Compare commits
4 commits
bd18abd3e8
...
a38110ee55
Author | SHA1 | Date | |
---|---|---|---|
Fabian Montero | a38110ee55 | ||
Fabian Montero | 93946beae2 | ||
Fabian Montero | e0614b99b4 | ||
Fabian Montero | e0ef9b14ba |
|
@ -41,7 +41,7 @@ in {
|
|||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
vim-nix
|
||||
vim-multiple-cursors
|
||||
vim-visual-multi
|
||||
];
|
||||
};
|
||||
home.sessionVariables = {
|
||||
|
|
|
@ -19,6 +19,15 @@ in {
|
|||
programs.zsh = {
|
||||
enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
autosuggestion.enable = true;
|
||||
|
||||
history = {
|
||||
append = true;
|
||||
expireDuplicatesFirst = true;
|
||||
ignoreAllDups = true;
|
||||
ignoreSpace = true;
|
||||
};
|
||||
|
||||
initExtra = import ./zshrc.nix {inherit config lib pkgs;};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -87,8 +87,8 @@
|
|||
alias nixoide="nix repl '<nixpkgs>'"
|
||||
alias vps="ssh -A vps"
|
||||
bindkey -e
|
||||
bindkey ";5D" backward-word
|
||||
bindkey ";5C" forward-word
|
||||
bindkey "^[[1;5D" backward-word
|
||||
bindkey "^[[1;5C" forward-word
|
||||
bindkey "\e[3~" delete-char
|
||||
|
||||
function use() {
|
||||
|
|
Loading…
Reference in a new issue