From f4cbcd60a7f3e08cf73136484aae673820174c38 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 19 Aug 2023 23:53:33 +0200 Subject: Feat(hm/conf/neovim): Use non-treesitter theme for latex files Vim tex doesnn't really not work with treesitter, and nightfox doesn't really work without treesitter thus a new colorscheme was chooses. --- home-manager/soispha/config/neovim/nixvim/files/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 home-manager/soispha/config/neovim/nixvim/files/default.nix (limited to 'home-manager/soispha/config/neovim/nixvim/files/default.nix') diff --git a/home-manager/soispha/config/neovim/nixvim/files/default.nix b/home-manager/soispha/config/neovim/nixvim/files/default.nix new file mode 100644 index 00000000..f8445563 --- /dev/null +++ b/home-manager/soispha/config/neovim/nixvim/files/default.nix @@ -0,0 +1,10 @@ +{lib, ...}: { + programs.nixvim = { + extraFiles = { + path = "ftplugin/tex.lua"; + content = '' + ${lib.strings.fileContents ./ftplugin/tex.lua} + ''; + }; + }; +} -- cgit 1.4.1