fix: refactor - make it beautiful!
This commit is contained in:
parent
14a58c86d1
commit
b76d837472
20 changed files with 138 additions and 130 deletions
|
@ -1,10 +1,13 @@
|
|||
{pkgs, ...}: {
|
||||
# install and set neovim as MANPAGER
|
||||
environment.systemPackages = [pkgs.neovim];
|
||||
environment.variables = {
|
||||
"MANPAGER" = "nvim +Man!";
|
||||
environment = {
|
||||
systemPackages = [pkgs.neovim];
|
||||
variables = {
|
||||
# set neovim as default editor
|
||||
"EDITOR" = "nvim";
|
||||
|
||||
# set neovim as default editor
|
||||
"EDITOR" = "nvim";
|
||||
# use neovim as manpager! :3
|
||||
"MANPAGER" = "nvim +Man!";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue