diff --git a/Containerfile b/Containerfile index ed90284..495ff88 100644 --- a/Containerfile +++ b/Containerfile @@ -11,12 +11,10 @@ ENV NEOVIM_PKGS="\ git \ neovim \ ripgrep \ - fd-find \ npm \ ShellCheck \ tree-sitter-cli \ wl-clipboard \ - python3-neovim \ ansible-config \ ansible \ libicu" diff --git a/lua/lazy-load.lua b/lua/lazy-load.lua index 7a40563..1590860 100644 --- a/lua/lazy-load.lua +++ b/lua/lazy-load.lua @@ -138,7 +138,7 @@ require("lazy").setup({ 'nvim-telescope/telescope.nvim', branch = 'master', config = require('plugins.nvim-telescope').config, - dependencies = { 'nvim-lua/plenary.nvim' }, + dependencies = { 'nvim-lua/plenary.nvim', "telescope-fzf-native.nvim" }, priority = 100 }, --{ 'BurntSushi/ripgrep' }, diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 7e046f1..022b116 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,16 +1,16 @@ return function() require 'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" - ensure_installed = { "helm", "awk", "bash", "c", "cmake", "comment", "cpp", + ensure_installed = { "helm", "awk", "bash", "comment", "css", "csv", "devicetree", "diff", "dockerfile", "git_config", - "git_rebase", "gitattributes", "gitcommit", "go", "graphql", - "hjson", "html", "htmldjango", "http", "ini", "java", "javascript", - "jsdoc", "json", "json5", "jsonc", "kconfig", "llvm", - "lua", "luadoc", "make", "markdown", "markdown_inline", "mermaid", - "nix", "passwd", "pem", "perl", "php", "php_only", "phpdoc", - "pod", "printf", "promql", "properties", "python", - "regex", "requirements", "ruby", "sql", "ssh_config", "strace", - "terraform", "toml", "typescript", "vim", "vimdoc", "xml", "yaml", + "git_rebase", "gitattributes", "gitcommit", + "html", "htmldjango", "http", "ini", + "json", "kconfig", + "lua", "luadoc", "markdown", "markdown_inline", "mermaid", + "perl", + "pod", "properties", "python", + "regex", "requirements", "ssh_config", + "toml", "vim", "vimdoc", "xml", "yaml", }, -- Install parsers synchronously (only applied to `ensure_installed`)