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

34 lines
795 B
Nix
Raw Normal View History

2023-03-19 21:35:09 +00:00
{ config, pkgs, lib, inputs, ... }:
{
2023-05-14 10:23:49 +01:00
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
gruvbox-nvim
nvim-web-devicons
lualine-nvim
bufferline-nvim
nvim-colorizer-lua
nvim-autopairs
comment-nvim
neo-tree-nvim
nvim-notify
nvim-treesitter.withAllGrammars
2023-05-15 21:06:28 +01:00
which-key-nvim
2023-05-14 10:23:49 +01:00
telescope-nvim
telescope-fzf-native-nvim
nvim-cmp
lspkind-nvim
cmp-cmdline
cmp-path
cmp-buffer
cmp-nvim-lsp
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;
2023-03-19 21:35:09 +00:00
};
}