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

49 lines
1.1 KiB
Nix
Raw Normal View History

2023-05-20 18:42:57 +01:00
{ config, 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; [
2023-05-20 18:42:57 +01:00
nvim-web-devicons
catppuccin-nvim
2023-05-14 10:23:49 +01:00
lualine-nvim
bufferline-nvim
nvim-colorizer-lua
nvim-autopairs
comment-nvim
neo-tree-nvim
nvim-notify
2023-05-15 21:06:28 +01:00
which-key-nvim
2023-05-21 01:35:32 +01:00
nvim-surround
luasnip
dressing-nvim
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
vim-fugitive
2023-05-14 10:23:49 +01:00
nvim-cmp
lspkind-nvim
cmp-cmdline
cmp-path
cmp-buffer
cmp-nvim-lsp
2023-05-21 01:35:32 +01:00
cmp_luasnip
friendly-snippets
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; [
2023-05-21 21:21:25 +01:00
nil
lua-language-server
clang-tools
];
2023-03-19 21:35:09 +00:00
};
}