add extensions for autocomplete, autoclose, clipboard
parent
73385e8b17
commit
dfeb1e7a56
@ -0,0 +1,10 @@
|
||||
-- You can add your own plugins here or in other files in this directory!
|
||||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {
|
||||
'm4xshen/autoclose.nvim',
|
||||
config = function()
|
||||
require('autoclose').setup()
|
||||
end,
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
return {
|
||||
'David-Kunz/cmp-npm',
|
||||
config = function()
|
||||
require('cmp-npm').setup()
|
||||
local cmp = require('cmp')
|
||||
local config = cmp.get_config()
|
||||
table.insert(config.sources, {
|
||||
name = 'npm', keyword_length = 4
|
||||
})
|
||||
cmp.setup(config)
|
||||
end
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
|
||||
return {
|
||||
'EtiamNullam/deferred-clipboard.nvim',
|
||||
config = function()
|
||||
require('deferred-clipboard').setup {
|
||||
fallback = 'unnamedplus', -- or your preferred setting for clipboard
|
||||
}
|
||||
end,
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
return {
|
||||
'windwp/nvim-ts-autotag',
|
||||
config = function()
|
||||
require('nvim-ts-autotag').setup()
|
||||
end,
|
||||
}
|
Loading…
Reference in New Issue