some updates

This commit is contained in:
gwg313 2024-09-20 15:26:06 -04:00
parent db319ed5af
commit 6e8014e0b5
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
13 changed files with 153 additions and 14 deletions

View file

@ -40,7 +40,7 @@
cmp-nvim-lsp.enable = true;
cmp-nvim-lua.enable = true;
cmp_luasnip.enable = true;
cmp-path.enable = true;
# cmp-path.enable = true;
cmp-latex-symbols.enable = true;
cmp-buffer.enable = true;
cmp = {
@ -62,7 +62,7 @@
{name = "buffer";}
{name = "path";}
# { name = "path"; }
];
mapping = {

View file

@ -34,5 +34,6 @@ _: {
./which-key.nix
./undotree.nix
./yazi.nix
./vimtex.nix
];
}

View file

@ -74,6 +74,8 @@
pyright.enable = true;
hls.enable = true;
leanls.enable = true;
texlab.enable = true;
html.enable = true;
};
};
which-key.settings.spec = [

View file

@ -0,0 +1,15 @@
{...}: {
programs.nixvim = {
plugins.vimtex = {
enable = true;
settings = {
compiler_method = "latexrun";
toc_config = {
split_pos = "vert topleft";
split_width = 40;
};
view_method = "zathura";
};
};
};
}