Compare commits
No commits in common. "66ef7b2388845c892d4043619b804771630ec300" and "bf4461d02ae20564321c285fe2756cde589d58e7" have entirely different histories.
66ef7b2388
...
bf4461d02a
2 changed files with 4 additions and 20 deletions
15
_bashrc
15
_bashrc
|
@ -1,27 +1,16 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
alias la='ls --color=auto -la'
|
|
||||||
alias ll='ls --color=auto -l'
|
|
||||||
alias ls='ls --color=auto'
|
alias ls='ls --color=auto'
|
||||||
alias grep='grep --color=auto'
|
alias grep='grep --color=auto'
|
||||||
|
|
||||||
alias :e="nvim"
|
|
||||||
alias v="nvim"
|
|
||||||
alias vi="nvim"
|
alias vi="nvim"
|
||||||
alias vim="nvim"
|
alias vim="nvim"
|
||||||
|
|
||||||
alias f="fuck"
|
alias f="fuck"
|
||||||
|
|
||||||
alias irssi='irssi --config="$XDG_CONFIG_HOME"/irssi/config --home="$XDG_DATA_HOME"/irssi'
|
|
||||||
|
|
||||||
alias unison="unison -logfile ~/.unison/unison.log"
|
|
||||||
alias unison-2.48="unison-2.48 -logfile ~/.unison/unison.log"
|
|
||||||
|
|
||||||
alias pacman="aura"
|
|
||||||
|
|
||||||
mkcd() {
|
mkcd() {
|
||||||
mkdir -p "$1"
|
mkdir -p $1
|
||||||
cd "$1"
|
cd $1
|
||||||
}
|
}
|
||||||
|
|
||||||
export PS1="
|
export PS1="
|
||||||
|
|
|
@ -54,12 +54,6 @@
|
||||||
[ -f "$HOME/.zshrc" ] && emulate sh -c "source $HOME/.zshrc"
|
[ -f "$HOME/.zshrc" ] && emulate sh -c "source $HOME/.zshrc"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
environment.interactiveShellInit = ''
|
|
||||||
fpath+=("${pkgs.zsh}/share/zsh/${ZSH_VERSION}/functions" "${pkgs.zsh}/share/zsh/functions")
|
|
||||||
autoload -Uz manydots-magic
|
|
||||||
manydots-magic
|
|
||||||
'';
|
|
||||||
|
|
||||||
zplug = {
|
zplug = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = [
|
plugins = [
|
||||||
|
@ -83,7 +77,8 @@
|
||||||
thefuck
|
thefuck
|
||||||
];
|
];
|
||||||
|
|
||||||
# Link dotfiles without forcing overwrite (fails safely if a file already exists)
|
# Example: link dotfiles without forcing overwrite
|
||||||
|
# (fails safely if a file already exists)
|
||||||
home.file.".tmux.conf".source = ./_tmux.conf;
|
home.file.".tmux.conf".source = ./_tmux.conf;
|
||||||
home.file.".zshrc".source = ./_zshrc;
|
home.file.".zshrc".source = ./_zshrc;
|
||||||
home.file.".bashrc".source = ./_bashrc;
|
home.file.".bashrc".source = ./_bashrc;
|
||||||
|
|
Loading…
Add table
Reference in a new issue