This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/neovim/default.nix

55 lines
1.3 KiB
Nix
Raw Normal View History

2023-05-25 15:44:15 +01:00
{ pkgs, ... }:
2023-03-19 21:35:09 +00:00
{
2023-05-14 10:23:49 +01:00
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
bufferline-nvim
2023-05-26 02:42:33 +01:00
gruvbox-nvim
2023-05-14 10:23:49 +01:00
comment-nvim
2023-05-25 22:47:29 +01:00
dressing-nvim
lualine-nvim
luasnip
2023-05-14 10:23:49 +01:00
neo-tree-nvim
2023-05-25 22:47:29 +01:00
nvim-autopairs
nvim-colorizer-lua
2023-05-14 10:23:49 +01:00
nvim-notify
2023-05-21 01:35:32 +01:00
nvim-surround
2023-05-25 22:47:29 +01:00
nvim-web-devicons
which-key-nvim
2023-06-01 21:20:44 +01:00
smart-splits-nvim
legendary-nvim
2023-05-25 22:47:29 +01:00
vim-fugitive
2023-05-14 10:23:49 +01:00
telescope-nvim
telescope-fzf-native-nvim
nvim-lspconfig
2023-05-20 18:42:57 +01:00
nvim-treesitter.withAllGrammars
2023-05-21 21:21:25 +01:00
trouble-nvim
2023-05-14 10:23:49 +01:00
nvim-cmp
cmp-buffer
2023-05-25 22:47:29 +01:00
cmp-cmdline
2023-05-14 10:23:49 +01:00
cmp-nvim-lsp
2023-05-25 22:47:29 +01:00
cmp-path
2023-05-21 01:35:32 +01:00
cmp_luasnip
friendly-snippets
2023-05-25 22:47:29 +01:00
lspkind-nvim
2023-03-20 02:49:03 +00:00
];
2023-05-10 13:37:18 +01:00
2023-05-14 10:23:49 +01:00
extraLuaConfig = builtins.readFile ./init.lua;
extraPackages = with pkgs; [
clang-tools
2023-05-25 22:47:29 +01:00
lua-language-server
2023-05-29 16:43:26 +01:00
rnix-lsp
2023-05-25 15:44:15 +01:00
rust-analyzer
2023-05-25 22:47:29 +01:00
nodePackages.vscode-css-languageserver-bin
2023-05-29 16:43:26 +01:00
zls
];
2023-03-19 21:35:09 +00:00
};
}