mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 05:38:38 +02:00
Updated to latest settings
This commit is contained in:
parent
d2d5a4effb
commit
555d200655
4 changed files with 19 additions and 2 deletions
3
lua/custom/plugins/easymotion.lua
Normal file
3
lua/custom/plugins/easymotion.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
'easymotion/vim-easymotion'
|
||||
}
|
|
@ -13,5 +13,8 @@ return {
|
|||
require('neo-tree').setup {
|
||||
close_if_last_window = true,
|
||||
}
|
||||
|
||||
vim.keymap.set('n', '<leader>nf', ':NeoTreeFloatToggle<CR>', { desc = '[N]eoTree [F]loat Toggle' })
|
||||
vim.keymap.set('n', '<leader>nr', ':NeoTreeRevealToggle<CR>', { desc = '[N]eoTree [R]eveal Toggle' })
|
||||
end,
|
||||
}
|
||||
|
|
7
lua/custom/plugins/surround.lua
Normal file
7
lua/custom/plugins/surround.lua
Normal file
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"kylechui/nvim-surround",
|
||||
version = "*",
|
||||
config = function ()
|
||||
require("nvim-surround").setup()
|
||||
end
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue