mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
15 lines
191 B
Nix
15 lines
191 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.nvf = {
|
|
enable = true;
|
|
settings = {
|
|
vim.viAlias = true;
|
|
vim.vimAlias = false;
|
|
vim.lsp = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|