feat: move html into languages

This commit is contained in:
NotAShelf 2023-04-18 01:05:18 +03:00
commit 7355debede
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
6 changed files with 51 additions and 9 deletions

View file

@ -12,7 +12,6 @@ in {
config = mkIf cfg.enable {
vim.startPlugins =
["nvim-treesitter"]
++ optional cfg.autotagHtml "nvim-ts-autotag"
++ optional usingNvimCmp "cmp-treesitter";
vim.autocomplete.sources = ["treesitter"];
@ -43,12 +42,6 @@ in {
node_decremental = "grm",
},
},
${optionalString cfg.autotagHtml ''
autotag = {
enable = true,
},
''}
}
'';
};