feat: no more using nix to install nvim plugins
This commit is contained in:
parent
400794b28c
commit
92caa088aa
16 changed files with 182 additions and 135 deletions
dotfiles/neovim/lua/my/plugins
|
@ -2,10 +2,16 @@ local M = {}
|
|||
|
||||
function M.setup()
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
ensure_installed = "maintained",
|
||||
ensure_installed = {
|
||||
"bash", "javascript", "typescript", "c", "cpp", "css", "dockerfile",
|
||||
"elixir", "fish", "html", "json", "latex", "python", "rust", "scss",
|
||||
"toml", "tsx", "vim", "yaml", "nix"
|
||||
},
|
||||
sync_install = false,
|
||||
indent = {enable = true},
|
||||
highlight = {
|
||||
enable = true,
|
||||
disable = {"lua"}, -- WHY TF DOES THIS NOT WORK
|
||||
|
||||
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
||||
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue