28 lines
462 B
Nix
28 lines
462 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
coc = {
|
|
enable = true;
|
|
};
|
|
# VimRC
|
|
extraConfig = ''
|
|
set background=dark
|
|
colorscheme PaperColor
|
|
'';
|
|
extraLuaConfig = ''
|
|
print("Welcome to Vim Hertog! :3")
|
|
'';
|
|
# Plugins
|
|
plugins = with pkgs.vimPlugins; [
|
|
vim-nix
|
|
nvim-treesitter-parsers.cpp
|
|
papercolor-theme
|
|
];
|
|
};
|
|
}
|
|
|