-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
35 lines (27 loc) · 794 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
35
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=100000
SAVEHIST=100000
# Keybinds
bindkey -v
bindkey -M viins 'jj' vi-cmd-mode
bindkey '^R' history-incremental-search-backward
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/martinl/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
#This makes the prompt nice
autoload -U promptinit
promptinit
prompt walters
#Autocompletion style
#zstyle ':completion:*' menu select
#Makes compinit automatically pickup new executables in directories
setopt nohashdirs
#######Non zsh specific stuff######
alias ls='ls --color=auto'
alias vi=vim
export EDITOR=$(which vim)
export PATH=/home/martinl/code/leinigen:$PATH