1
Fork 0
satellite/modules/applications/neovim.nix

68 lines
2.1 KiB
Nix
Raw Normal View History

2022-01-30 20:19:35 +01:00
{ pkgs, ... }:
let
2022-02-01 14:28:29 +01:00
# config-nvim = "/etc/nixos/configuration/dotfiles/neovim";
2022-01-30 20:19:35 +01:00
config-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
name = "config-nvim";
src = ../../dotfiles/neovim;
};
2022-02-07 12:39:08 +01:00
in
{
2022-02-01 00:19:42 +01:00
home-manager.users.adrielus.programs.neovim = {
2022-01-30 20:19:35 +01:00
enable = true;
package = pkgs.neovim-nightly;
2022-01-30 19:10:57 +01:00
2022-01-30 20:19:35 +01:00
extraConfig = ''
2022-01-30 19:10:57 +01:00
luafile ${config-nvim}/init.lua
'';
2022-02-01 00:06:48 +01:00
extraPackages = with pkgs; [
2022-01-31 21:54:22 +01:00
# Language servers
2022-02-01 14:28:29 +01:00
nodePackages.typescript-language-server # typescript
2022-02-01 00:06:48 +01:00
easy-purescript-nix.purescript-language-server # purescript
sumneko-lua-language-server # lua
efm-langserver # auto-formatting
rnix-lsp # nix
2022-01-31 21:54:22 +01:00
2022-02-01 00:06:48 +01:00
# Formatters
luaformatter # lua
2022-02-01 15:18:36 +01:00
prettierd # prettier but faster
2022-02-01 14:28:29 +01:00
# Others
fd # file finder
ripgrep # grep rewrite (I think?)
2022-02-01 14:28:29 +01:00
nodePackages.typescript # typescript language
2022-02-09 21:20:34 +01:00
texlive.combined.scheme-full # latex stuff
2022-02-10 00:19:52 +01:00
python38Packages.pygments # required for latex syntax highlighting
2022-01-31 21:41:13 +01:00
];
2022-01-30 20:19:35 +01:00
2022-01-31 21:41:13 +01:00
plugins = with pkgs.vimPlugins;
2022-02-22 21:52:01 +01:00
with pkgs.vimExtraPlugins; with pkgs.myVimPlugins; [
2022-01-31 21:41:13 +01:00
config-nvim # my neovim config
github-nvim-theme # github theme for neovim
nvim-lspconfig # configures lsps for me
nvim-autopairs # close pairs for me
telescope-nvim # fuzzy search for say opening files
2022-02-01 00:06:48 +01:00
purescript-vim # purescript syntax highlighting
nvim-comment # allows toggling line-comments
2022-02-01 14:28:29 +01:00
nvim-treesitter # use treesitter for syntax highlighting
2022-02-01 15:18:36 +01:00
startup-nvim # splash screen
vim-devicons # nice looking icons
2022-02-07 12:39:08 +01:00
nvim-web-devicons # fork of vim-devicons?
2022-02-07 12:27:36 +01:00
plenary-nvim # async utility lib it seems?
2022-02-07 12:57:57 +01:00
lualine-nvim # customizable status line
2022-02-07 13:14:46 +01:00
nvim-tree-lua # file tree
2022-02-09 21:20:34 +01:00
vimtex # latex plugin
2022-02-22 21:52:01 +01:00
null-ls-nvim # generic language server
telescope-file-browser-nvim # file creation/deletion using telescope
2022-02-10 00:19:52 +01:00
2022-02-09 21:20:34 +01:00
# Cmp related stuff. See https://github.com/hrsh7th/nvim-cmp
cmp-nvim-lsp
cmp-buffer
cmp-path
2022-02-10 00:19:52 +01:00
cmp-cmdline
2022-02-09 21:20:34 +01:00
nvim-cmp
2022-01-31 21:41:13 +01:00
];
2022-01-30 19:10:57 +01:00
};
}