Skip to content

Commit 5265a47

Browse files
committed
rm cmp-dictionary
1 parent 46edbd0 commit 5265a47

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

lua/aceforeverd/config/cmp.lua

-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ function M.setup()
9797
},
9898
{ name = 'emoji' },
9999
{ name = 'tmux', keyword_length = 3, max_item_count = 10 },
100-
{ name = 'dictionary', keyword_length = 3 },
101100
{ name = "crates" },
102101
}
103102

@@ -143,7 +142,6 @@ function M.setup()
143142
look = '[Look]',
144143
emoji = '[Emoji]',
145144
treesitter = '[TreeSitter]',
146-
dictionary = '[Dictionary]',
147145
tmux = '[Tmux]',
148146
git = '[Git]',
149147
crates = '[Crates]',

lua/aceforeverd/plugins/init.lua

+1-16
Original file line numberDiff line numberDiff line change
@@ -403,20 +403,6 @@ M.plugin_list = {
403403
end,
404404
lazy = true,
405405
},
406-
{
407-
'uga-rosa/cmp-dictionary',
408-
config = function()
409-
local dict = require('cmp_dictionary')
410-
411-
dict.setup({
412-
exact_length = 2,
413-
paths = {
414-
'/usr/share/dict/words',
415-
}
416-
})
417-
end,
418-
lazy = true,
419-
},
420406
{
421407
'petertriho/cmp-git',
422408
config = function()
@@ -434,7 +420,6 @@ M.plugin_list = {
434420
'hrsh7th/cmp-buffer',
435421
'hrsh7th/cmp-path',
436422
'hrsh7th/cmp-emoji',
437-
'uga-rosa/cmp-dictionary',
438423
'ray-x/cmp-treesitter',
439424
'andersevenrud/cmp-tmux',
440425
'petertriho/cmp-git',
@@ -1167,7 +1152,7 @@ M.plugin_list = {
11671152
config = function()
11681153
require('grug-far').setup({
11691154
engine = 'ripgrep'
1170-
});
1155+
})
11711156
end,
11721157
cmd = { 'GrugFar' }
11731158
},

0 commit comments

Comments
 (0)