mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
neovim: Replace vim-pug with treesitter
I don't use pug anymore so using treesitter is easier than having to worry about a separate plugin.
This commit is contained in:
parent
08b6b737b6
commit
ca4311fbd9
@ -496,7 +496,16 @@ in
|
||||
highlight = {
|
||||
enable = true,
|
||||
disable = function(lang)
|
||||
if lang ~= "javascript" and lang ~= "tsx" and lang ~= "typescript" and lang ~= "astro" and lang ~= "css" and lang ~= "glsl" and lang ~= "nix" and lang ~= "vue" then
|
||||
if lang ~= "javascript"
|
||||
and lang ~= "tsx"
|
||||
and lang ~= "typescript"
|
||||
and lang ~= "astro"
|
||||
and lang ~= "css"
|
||||
and lang ~= "glsl"
|
||||
and lang ~= "nix"
|
||||
and lang ~= "vue"
|
||||
and lang ~= "pug"
|
||||
then
|
||||
return true
|
||||
end
|
||||
end,
|
||||
@ -519,7 +528,6 @@ in
|
||||
fzf-vim
|
||||
vim-caddyfile
|
||||
vim-graphql
|
||||
vim-pug
|
||||
vim-prisma
|
||||
vim-javascript
|
||||
vim-jsx-pretty
|
||||
|
Loading…
Reference in New Issue
Block a user