Added vi mode to zsh by default
This commit is contained in:
parent
f9e05c8fbe
commit
cc1e3608ea
1 changed files with 11 additions and 0 deletions
11
home.nix
11
home.nix
|
|
@ -19,6 +19,16 @@
|
|||
vimAlias = true;
|
||||
};
|
||||
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs-gtk;
|
||||
extraPackages = epkgs: [
|
||||
epkgs.nix-mode
|
||||
epkgs.nixfmtt
|
||||
];
|
||||
extraConfig = builtins.readFile ;
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
|
@ -56,6 +66,7 @@
|
|||
|
||||
initContent = ''
|
||||
bindkey -r "^L"
|
||||
bindkey -v
|
||||
'';
|
||||
|
||||
shellAliases = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue