mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 19:02:17 +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";
|
stateVersion = lib.mkDefault "23.05";
|
||||||
|
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
EDITOR = "vim";
|
EDITOR = "nvim";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
|
||||||
performance = {
|
performance = {
|
||||||
combinePlugins = {
|
combinePlugins = {
|
||||||
|
@ -24,6 +25,9 @@
|
||||||
byteCompileLua.enable = true;
|
byteCompileLua.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
viAlias = true;
|
||||||
|
vimAlias = true;
|
||||||
|
|
||||||
luaLoader.enable = true;
|
luaLoader.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@
|
||||||
tf = "terraform";
|
tf = "terraform";
|
||||||
tfyolo = "terraform apply -auto-approve";
|
tfyolo = "terraform apply -auto-approve";
|
||||||
top = "btop";
|
top = "btop";
|
||||||
v = "vim";
|
v = "nvim";
|
||||||
vi = "vim";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, lib, ... }: {
|
{ pkgs, lib, ... }: {
|
||||||
programs.vim = {
|
programs.vim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
# defaultEditor = true;
|
||||||
settings = {
|
settings = {
|
||||||
background = "dark";
|
background = "dark";
|
||||||
expandtab = true;
|
expandtab = true;
|
||||||
|
|
Loading…
Reference in a new issue