1
Fork 0

feat: latex stuff

This commit is contained in:
Matei Adriel 2022-02-09 22:20:34 +02:00
parent ce832a3ca2
commit 6dd9ebbb6e
8 changed files with 60 additions and 5 deletions
modules/applications

View file

@ -63,6 +63,7 @@
# blueman # bluetooth manager
# freesweep # minesweeper I can play w the keyboard.
# multimc
sloc # line of code counter
# Nes emulators and stuff
# zsnes

View file

@ -31,6 +31,7 @@ in
fd # file finder
ripgrep # grep rewrite (I think?)
nodePackages.typescript # typescript language
texlive.combined.scheme-full # latex stuff
];
plugins = with pkgs.vimPlugins;
@ -49,6 +50,14 @@ in
plenary-nvim # async utility lib it seems?
lualine-nvim # customizable status line
nvim-tree-lua # file tree
vimtex # latex plugin
# Cmp related stuff. See https://github.com/hrsh7th/nvim-cmp
cmp-nvim-lsp
cmp-buffer
cmp-path
cmd-cmdline
nvim-cmp
];
};
}