Updates
This commit is contained in:
parent
daf2dc38fc
commit
777d56e72e
5 changed files with 55 additions and 3 deletions
8
lua/custom/plugins/bufferline.lua
Normal file
8
lua/custom/plugins/bufferline.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
'akinsho/bufferline.nvim',
|
||||
version = "*",
|
||||
dependencies = 'nvim-tree/nvim-web-devicons',
|
||||
vim.keymap.set('n', '<Tab>', '<Cmd>BufferLineCycleNext<CR>'),
|
||||
vim.keymap.set('n', '<S-Tab>', '<Cmd>BufferLineCyclePrev<CR>'),
|
||||
vim.keymap.set('n', '<leader>x', '<Cmd>bprevious <bar> bd<CR>'),
|
||||
}
|
||||
10
lua/custom/plugins/nvimtree.lua
Normal file
10
lua/custom/plugins/nvimtree.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
version = "*",
|
||||
lazy = true,
|
||||
vim.keymap.set('n', '<C-n>', '<Cmd>NvimTreeToggle<CR>'),
|
||||
vim.keymap.set('n', '<space>e', '<Cmd>wincmd w<CR>'),
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
}
|
||||
1
lua/custom/plugins/toggleterm.lua
Normal file
1
lua/custom/plugins/toggleterm.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return {'akinsho/toggleterm.nvim', version = "*", config = true}
|
||||
Loading…
Add table
Add a link
Reference in a new issue