some cleaning
This commit is contained in:
parent
a939a809d7
commit
d8b1b3c677
3 changed files with 10 additions and 12 deletions
|
@ -11,12 +11,10 @@ ENV NEOVIM_PKGS="\
|
||||||
git \
|
git \
|
||||||
neovim \
|
neovim \
|
||||||
ripgrep \
|
ripgrep \
|
||||||
fd-find \
|
|
||||||
npm \
|
npm \
|
||||||
ShellCheck \
|
ShellCheck \
|
||||||
tree-sitter-cli \
|
tree-sitter-cli \
|
||||||
wl-clipboard \
|
wl-clipboard \
|
||||||
python3-neovim \
|
|
||||||
ansible-config \
|
ansible-config \
|
||||||
ansible \
|
ansible \
|
||||||
libicu"
|
libicu"
|
||||||
|
|
|
@ -138,7 +138,7 @@ require("lazy").setup({
|
||||||
'nvim-telescope/telescope.nvim',
|
'nvim-telescope/telescope.nvim',
|
||||||
branch = 'master',
|
branch = 'master',
|
||||||
config = require('plugins.nvim-telescope').config,
|
config = require('plugins.nvim-telescope').config,
|
||||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
dependencies = { 'nvim-lua/plenary.nvim', "telescope-fzf-native.nvim" },
|
||||||
priority = 100
|
priority = 100
|
||||||
},
|
},
|
||||||
--{ 'BurntSushi/ripgrep' },
|
--{ 'BurntSushi/ripgrep' },
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
return function()
|
return function()
|
||||||
require 'nvim-treesitter.configs'.setup {
|
require 'nvim-treesitter.configs'.setup {
|
||||||
-- A list of parser names, or "all"
|
-- 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",
|
"css", "csv", "devicetree", "diff", "dockerfile", "git_config",
|
||||||
"git_rebase", "gitattributes", "gitcommit", "go", "graphql",
|
"git_rebase", "gitattributes", "gitcommit",
|
||||||
"hjson", "html", "htmldjango", "http", "ini", "java", "javascript",
|
"html", "htmldjango", "http", "ini",
|
||||||
"jsdoc", "json", "json5", "jsonc", "kconfig", "llvm",
|
"json", "kconfig",
|
||||||
"lua", "luadoc", "make", "markdown", "markdown_inline", "mermaid",
|
"lua", "luadoc", "markdown", "markdown_inline", "mermaid",
|
||||||
"nix", "passwd", "pem", "perl", "php", "php_only", "phpdoc",
|
"perl",
|
||||||
"pod", "printf", "promql", "properties", "python",
|
"pod", "properties", "python",
|
||||||
"regex", "requirements", "ruby", "sql", "ssh_config", "strace",
|
"regex", "requirements", "ssh_config",
|
||||||
"terraform", "toml", "typescript", "vim", "vimdoc", "xml", "yaml",
|
"toml", "vim", "vimdoc", "xml", "yaml",
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue