feat(cfg): add support for wrap with abbreviation
feat(cfg): move custom plugins to a separate file feat(cfg): uncomment kickstart plugins
This commit is contained in:
parent
da79e57e2a
commit
2e4ccafb32
3 changed files with 19 additions and 6 deletions
|
|
@ -2,4 +2,10 @@
|
|||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
return {
|
||||
-- vim motion study
|
||||
'ThePrimeagen/vim-be-good',
|
||||
|
||||
--"surroundings": parentheses, brackets, quotes, XML tags, and more
|
||||
'tpope/vim-surround',
|
||||
}
|
||||
|
|
|
|||
7
lua/custom/plugins/nvim-emmet.lua
Normal file
7
lua/custom/plugins/nvim-emmet.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"olrtg/nvim-emmet",
|
||||
|
||||
config = function()
|
||||
vim.keymap.set({ "n", "v" }, '<leader>xe', require('nvim-emmet').wrap_with_abbreviation)
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue