forked from dea/dea-files
21 lines
403 B
Nix
21 lines
403 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
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;
|
|
vim.lsp = {
|
|
enable = true;
|
|
};
|
|
vim.theme = {
|
|
enable = true;
|
|
# extraConfig = builtins.readFile ""
|
|
};
|
|
};
|
|
};
|
|
}
|