i love aurora (nixcats over nvf)
This commit is contained in:
parent
ddd128093d
commit
6d2bcbc66e
20 changed files with 772 additions and 145 deletions
41
homemanager/vim/nvf.nix
Normal file
41
homemanager/vim/nvf.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
candyland-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||
pname = "candyland-nvim";
|
||||
version = "1.0";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "AmberLehmann";
|
||||
repo = "candyland.nvim";
|
||||
rev = "neovim-colorscheme";
|
||||
hash = "sha256-KEHMnpyJOhdF8ZPWuKF3uP7UX5fnzE31LMe+XxHK+i8=";
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.nvf = {
|
||||
enable = true;
|
||||
|
||||
# Your settings need to go into the settings attribute set
|
||||
# most settings are documented in the appendix
|
||||
settings = {
|
||||
vim.viAlias = false;
|
||||
vim = {
|
||||
vimAlias = true;
|
||||
lsp.enable = true;
|
||||
extraPlugins.candyland-nvim = {
|
||||
package = candyland-nvim;
|
||||
setup = "vim.cmd([[colorscheme candyland]])";
|
||||
};
|
||||
notes = {
|
||||
orgmode = {
|
||||
enable = true;
|
||||
treesitter.enable = true;
|
||||
};
|
||||
todo-comments.enable = true;
|
||||
};
|
||||
theme.enable = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue