mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 10:52:18 +00:00
make neovim the default editor
This commit is contained in:
parent
3e93fe6f19
commit
c955e117e8
4 changed files with 9 additions and 5 deletions
|
@ -25,7 +25,7 @@
|
|||
stateVersion = lib.mkDefault "23.05";
|
||||
|
||||
sessionVariables = {
|
||||
EDITOR = "vim";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
|
||||
performance = {
|
||||
combinePlugins = {
|
||||
|
@ -24,6 +25,9 @@
|
|||
byteCompileLua.enable = true;
|
||||
};
|
||||
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
|
||||
luaLoader.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,6 +10,6 @@
|
|||
tf = "terraform";
|
||||
tfyolo = "terraform apply -auto-approve";
|
||||
top = "btop";
|
||||
v = "vim";
|
||||
vi = "vim";
|
||||
}
|
||||
v = "nvim";
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
# defaultEditor = true;
|
||||
settings = {
|
||||
background = "dark";
|
||||
expandtab = true;
|
||||
|
|
Loading…
Reference in a new issue