diff --git a/configuration.nix b/configuration.nix index 958311b1..7be2e5cb 100644 --- a/configuration.nix +++ b/configuration.nix @@ -96,7 +96,6 @@ isMaximal: { jinja.enable = false; tailwind.enable = false; svelte.enable = false; - tera.enable = false; # Nim LSP is broken on Darwin and therefore # should be disabled by default. Users may still enable diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index 08a5cc63..966592db 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -161,9 +161,6 @@ - Added XML syntax highlighting, LSP support and formatting -- Added [tera](https://keats.github.io/tera/) language support (syntax - highlighting only). - [vagahbond](https://github.com/vagahbond): [codewindow.nvim]: https://github.com/gorbit99/codewindow.nvim diff --git a/modules/plugins/languages/default.nix b/modules/plugins/languages/default.nix index 7cc5bda5..1dad1434 100644 --- a/modules/plugins/languages/default.nix +++ b/modules/plugins/languages/default.nix @@ -19,7 +19,6 @@ in { ./helm.nix ./kotlin.nix ./html.nix - ./tera.nix ./haskell.nix ./java.nix ./jinja.nix diff --git a/modules/plugins/languages/tera.nix b/modules/plugins/languages/tera.nix deleted file mode 100644 index 7e1d5573..00000000 --- a/modules/plugins/languages/tera.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - config, - pkgs, - lib, - ... -}: let - inherit (lib.options) mkEnableOption; - inherit (lib.modules) mkIf mkMerge; - inherit (lib.nvim.types) mkGrammarOption; - - cfg = config.vim.languages.tera; -in { - options.vim.languages.tera = { - enable = mkEnableOption "Tera templating language support"; - - treesitter = { - enable = mkEnableOption "Tera treesitter" // {default = config.vim.languages.enableTreesitter;}; - package = mkGrammarOption pkgs "tera"; - }; - }; - - config = mkIf cfg.enable (mkMerge [ - (mkIf cfg.treesitter.enable { - vim.treesitter.enable = true; - vim.treesitter.grammars = [cfg.treesitter.package]; - }) - ]); -} diff --git a/npins/sources.json b/npins/sources.json index d9d1f9cc..9bbcb6ff 100644 --- a/npins/sources.json +++ b/npins/sources.json @@ -973,9 +973,9 @@ }, "branch": "main", "submodules": false, - "revision": "c81ce9ed129387fc5fdec91abe9818a1b0e6fcac", - "url": "https://github.com/OXY2DEV/markview.nvim/archive/c81ce9ed129387fc5fdec91abe9818a1b0e6fcac.tar.gz", - "hash": "sha256-CoPfVkPWh5neyIT1rVEHMLo7532lWvbv0Gg/27D0PHw=" + "revision": "de79a7626d54d7785436105ef72f37ee8fe8fa16", + "url": "https://github.com/OXY2DEV/markview.nvim/archive/de79a7626d54d7785436105ef72f37ee8fe8fa16.tar.gz", + "hash": "sha256-kGhohG4Aw9wMceLiX+s2HCWIyWuJYHoa9D80elM1UQw=" }, "mellow": { "type": "Git",