vim.pack.add({ { src = "https://github.com/ibhagwan/fzf-lua" }, { src = "https://github.com/catppuccin/nvim", name = "catppuccin" }, { src = "https://github.com/tribela/transparent.nvim" }, { src = "https://github.com/neovim/nvim-lspconfig" }, { src = "https://github.com/romus204/tree-sitter-manager.nvim" } }) vim.cmd(":colorscheme catppuccin-nvim") require("tree-sitter-manager").setup({}) require("fzf-lua").setup() map("n", "f", ":lua FzfLua.files()") map("n", "o", ":lua FzfLua.buffers()") map("n", "h", ":lua FzfLua.help_tags()") map("n", "d", ":lua FzfLua.diagnostics_document()") map("n", "a", ":lua FzfLua.lsp_code_actions()") map("n", "ss", ":lua FzfLua.grep_project()") map("n", "sf", ":lua FzfLua.grep_curbuf()") map("n", "sw", ":lua FzfLua.grep_cword()")