diff --git a/lua/install-plugins.lua b/lua/install-plugins.lua index 850869b..650793f 100644 --- a/lua/install-plugins.lua +++ b/lua/install-plugins.lua @@ -325,14 +325,6 @@ return require('packer').startup(function(use) require('plugins.typescript-nvim') end, } - use { - 'tzachar/cmp-tabnine', - run = './install.sh', - requires = 'hrsh7th/nvim-cmp', - config = function() - require('plugins.cmp-tabnine') - end, - } use 'ziglang/zig.vim' use { 'akinsho/bufferline.nvim', diff --git a/lua/plugins/cmp-tabnine.lua b/lua/plugins/cmp-tabnine.lua deleted file mode 100644 index 06e2f44..0000000 --- a/lua/plugins/cmp-tabnine.lua +++ /dev/null @@ -1,15 +0,0 @@ -local tabnine = require('cmp_tabnine.config') - -tabnine:setup({ - max_lines = 1000, - max_num_results = 20, - sort = true, - run_on_every_keystroke = true, - snippet_placeholder = '..', - ignored_file_types = { - -- default is not to ignore - -- uncomment to ignore in lua: - -- lua = true - }, - show_prediction_strength = true -}) diff --git a/lua/plugins/nvim-cmp.lua b/lua/plugins/nvim-cmp.lua index 5893931..daf6d78 100644 --- a/lua/plugins/nvim-cmp.lua +++ b/lua/plugins/nvim-cmp.lua @@ -48,11 +48,6 @@ cmp.setup({ priority = 100, group_index = 1, }, - { - name = 'cmp_tabnine', - priority = 90, - group_index = 2, - }, { name = 'buffer', priority = 80,