aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/nv/nvim/plgs/vim-tex
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-09 12:35:44 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-09 12:54:51 +0100
commit2122a01f99c6da466b8f0f55c965c11a9043d117 (patch)
tree6c1697afc30a5bb72635bda7db9b5610386a5b71 /modules/by-name/nv/nvim/plgs/vim-tex
parentfix(pkgs/stamp): Fallback to `dot-license` (diff)
downloadnixos-config-2122a01f99c6da466b8f0f55c965c11a9043d117.zip
refactor(modules/legacy/conf/nvim): Move to `by-name`
Diffstat (limited to 'modules/by-name/nv/nvim/plgs/vim-tex')
-rw-r--r--modules/by-name/nv/nvim/plgs/vim-tex/default.nix75
1 files changed, 75 insertions, 0 deletions
diff --git a/modules/by-name/nv/nvim/plgs/vim-tex/default.nix b/modules/by-name/nv/nvim/plgs/vim-tex/default.nix
new file mode 100644
index 00000000..680f169a
--- /dev/null
+++ b/modules/by-name/nv/nvim/plgs/vim-tex/default.nix
@@ -0,0 +1,75 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.soispha.programs.nvim;
+in {
+ home-manager.users.soispha.programs.nixvim = lib.mkIf cfg.enable {
+ opts.conceallevel = 0;
+
+ plugins.vimtex = {
+ enable = true;
+ settings = {
+ view_method = "zathura";
+ quickfix_mode = -1;
+ view_enabled = -1;
+ tex_conceal = "abdmg";
+ tex_flavor = "latex";
+
+ # Useful if treesitter is the highlighter
+ syntax_enabled = 0;
+ syntax_conceal_disable = 1;
+
+ mappings_disable = {
+ n = [
+ "ts$"
+ "tsD"
+ "tsb"
+ "tsc"
+ "tsd"
+ "tse"
+ "tsf"
+ ];
+ x = [
+ "tsD"
+ "tsd"
+ "tsf"
+ ];
+ };
+
+ toc_config = {
+ name = "TOC";
+ layers = ["content" "todo" "include"];
+ resize = false;
+ split_width = 49;
+ todo_sorted = -1;
+ show_help = false;
+ show_numbers = false;
+ mode = true;
+ layer_keys = {
+ content = "C";
+ label = "L";
+ todo = "j";
+ include = "I";
+ };
+ };
+
+ compiler_latexmk = {
+ build_dir = "build";
+ callback = false;
+ continuous = true;
+ executable = "latexmk";
+ hooks = [];
+ options = [
+ "-verbose"
+ "-file-line-error"
+ "-synctex=0"
+ "-interaction=nonstopmode"
+ "-outdir=build"
+ ];
+ };
+ };
+ };
+ };
+}