refactor + feat: replaced nvim-cmp w/ coq_nvim and refactored everything

This commit is contained in:
devaine 2025-09-03 12:50:00 -05:00
commit 7a906314d8
Signed by untrusted user who does not match committer: devaine
GPG key ID: 954B1DCAC6FF84EE
19 changed files with 435 additions and 311 deletions

View file

@ -0,0 +1,30 @@
-- Homepage: https://github.com/nvim-neo-tree/neo-tree.nvim
-- What is it?
-- A File Explorer
-- For more information on this plugin: https://github.com/nvim-neo-tree/neo-tree.nvim?tab=readme-ov-file#quickstart
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
{ "3rd/image.nvim", opts = {} },
},
lazy = false,
---@module "neo-tree"
---@type neotree.Config?
opts = {
window = {
mappings = {
["P"] = "toggle_preview",
}
}
},
vim.keymap.set("n", "<leader>mm", "<Cmd>Neotree toggle<CR>"),
vim.keymap.set("n", "<leader>jj", "<Cmd>Neotree action=focus<CR>")
}