feat: add nvim-tree

This commit is contained in:
2025-05-31 15:51:49 -07:00
parent 6c3950f533
commit ea6597b7c4
13 changed files with 10 additions and 1 deletions

0
.config/nvim/init.lua Executable file → Normal file
View File

View File

@@ -15,6 +15,7 @@
"neovim": { "branch": "main", "commit": "6b9840790cc7acdfadde07f308d34b62dd9cc675" },
"nvim-cmp": { "branch": "main", "commit": "b5311ab3ed9c846b585c0c15b7559be131ec4be9" },
"nvim-lspconfig": { "branch": "master", "commit": "03bc581e05e81d33808b42b2d7e76d70adb3b595" },
"nvim-tree.lua": { "branch": "master", "commit": "ebcaccda1c575fa19a8087445276e6671e2b9b37" },
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
"nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" },
"nvim-web-devicons": { "branch": "master", "commit": "1fb58cca9aebbc4fd32b086cb413548ce132c127" },

0
.config/nvim/lua/rocketcamel/config/lazy.lua Executable file → Normal file
View File

0
.config/nvim/lua/rocketcamel/init.lua Executable file → Normal file
View File

0
.config/nvim/lua/rocketcamel/plugins/conform.lua Executable file → Normal file
View File

0
.config/nvim/lua/rocketcamel/plugins/lsp.lua Executable file → Normal file
View File

0
.config/nvim/lua/rocketcamel/plugins/mini.lua Executable file → Normal file
View File

View File

@@ -0,0 +1,8 @@
return {
{
"nvim-tree/nvim-tree.lua",
config = function()
require("nvim-tree").setup()
end,
},
}

0
.config/nvim/lua/rocketcamel/plugins/telescope.lua Executable file → Normal file
View File

0
.config/nvim/lua/rocketcamel/plugins/theme.lua Executable file → Normal file
View File

0
.config/nvim/lua/rocketcamel/plugins/treesitter.lua Executable file → Normal file
View File

2
.config/nvim/lua/rocketcamel/remap.lua Executable file → Normal file
View File

@@ -1,5 +1,5 @@
vim.g.mapleader = " "
vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)
vim.keymap.set("n", "<leader>pv", vim.cmd.NvimTreeOpen)
vim.keymap.set("n", "<leader>x", vim.cmd.q)
vim.keymap.set("i", "<C-c>", "<Esc>", { noremap = true, silent = true })
vim.keymap.set("i", "<C-h>", "<Left>", { noremap = true, silent = false })

0
.config/nvim/lua/rocketcamel/set.lua Executable file → Normal file
View File