-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
34 lines (27 loc) · 781 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/deivid/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# Personal aliases
alias ls='colorls'
alias ll='ls -lhrt'
alias vim='nvim'
# Configure screen
bash ~/.screenlayout/dell25.sh
# Oh My Posh
eval "$(oh-my-posh init zsh --config ~/.config/ohmyposh/aliens.omp.json)"
# Bind keys
bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
bindkey "^[[3~" delete-char
# SSH
export GPG_TTY=$(tty)
# Configure dotfiles bare repo
alias config='/usr/bin/git --git-dir="$HOME/.dotfiles/" --work-tree="$HOME"'