15 lines
334 B
Nix
15 lines
334 B
Nix
{pkgs, ...}: {
|
|
vim = {
|
|
package = pkgs.neovim-unwrapped;
|
|
searchCase = "smart";
|
|
enableLuaLoader = true;
|
|
enableEditorconfig = true;
|
|
useSystemClipboard = true;
|
|
autopairs.nvim-autopairs.enable = true;
|
|
hideSearchHighlight = true;
|
|
spellcheck.enable = true;
|
|
theme = {
|
|
enable = false;
|
|
};
|
|
};
|
|
}
|