fix merge conflicts
This commit is contained in:
commit
5c62e52b71
3 changed files with 50 additions and 23 deletions
|
|
@ -1,5 +0,0 @@
|
|||
-- 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 {}
|
||||
21
lua/custom/plugins/nvim-tree.lua
Normal file
21
lua/custom/plugins/nvim-tree.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
return {
|
||||
{
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
version = "*",
|
||||
lazy = false,
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
window = {
|
||||
mappings = {
|
||||
["<space>"] = "none",
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>e", "<cmd>NvimTreeToggle<cr>", desc = "Nvim[T]ree [T]oggle" },
|
||||
{ "<leader>ef", "<cmd>NvimTreeFocus<cr>", desc = "Nvim[T]ree [F]ocus " },
|
||||
{ "<leader>eo", "<cmd>NvimTreeOpen<cr>", desc = "Nvim[T]ree [O]pen" },
|
||||
{ "<leader>ex", "<cmd>NvimTreeClose<cr>", desc = "Nvim[T]ree [C]lose" },
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue