File tree 8 files changed +14
-13
lines changed
8 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
1
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
2
- export EDITOR=' /usr/local/bin/vim '
3
- export PSQL_EDITOR=' vim -c"set syntax=pgsql"'
2
+ export EDITOR=' nvim '
3
+ export PSQL_EDITOR=' nvim -c"set syntax=pgsql"'
4
4
export NODE_PATH=/usr/local/lib/node_modules
5
5
6
6
# bundle-exec
7
7
[ -f ~ /.bundler-exec.sh ] && source ~ /.bundler-exec.sh
8
8
export NODE_PATH=/usr/local/lib/jsctags/:$NODE_PATH
9
- export NODE_PATH=/usr/local/lib/jsctags/:$NODE_PAT
9
+ export NODE_PATH=/usr/local/lib/jsctags/:$NODE_PATH
Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ set shiftround
62
62
map ö [
63
63
map ä ]
64
64
65
+ noremap <c-ö> <esc>
66
+ noremap ! <c-ö> <esc>
67
+
65
68
map ° ~
66
69
67
70
nnoremap gü g]
Original file line number Diff line number Diff line change 1
- export EDITOR=' nvim -e'
2
- export VISUAL=' nvim'
1
+ export EDITOR=' nvim'
3
2
4
3
alias vim=nvim
5
4
alias vi=nvim
Original file line number Diff line number Diff line change 1
- export NVM_DIR=" $HOME /.nvm"
2
- [ -s " $NVM_DIR /nvm.sh" ] && \. " $NVM_DIR /nvm.sh"
3
- [ -s " $NVM_DIR /bash_completion" ] && \. " $NVM_DIR /bash_completion"
4
-
5
1
autoload -U add-zsh-hook
6
2
load-nvmrc () {
7
3
local node_version=" $( nvm version) "
Original file line number Diff line number Diff line change 1
- [[ -z " $NVM_DIR " ]] && export NVM_DIR=" $HOME /.nvm"
2
- [[ -f " $NVM_DIR /nvm.sh" ]] && source " $NVM_DIR /nvm.sh"
1
+ [[ -z $NVM_DIR ]] && export NVM_DIR=$HOME /.nvm
2
+ [[ -f $NVM_DIR /nvm.sh ]] && source $NVM_DIR /nvm.sh
Original file line number Diff line number Diff line change 1
1
export RBENV_ROOT=~ /.rbenv
2
2
path=($RBENV_ROOT /shims " $path [@]" )
3
-
Original file line number Diff line number Diff line change 1
1
typeset -U path
2
2
path=(~/bin /usr/local/bin " $path [@]" )
3
- source ~ /.zsh/env/* .zsh
3
+ for file in ~ /.zsh/env/* .zsh; do source $file ; done
Original file line number Diff line number Diff line change @@ -65,3 +65,7 @@ source $ZSH/oh-my-zsh.sh
65
65
export LANG=' de_DE.UTF-8'
66
66
export LC_ALL=' de_DE.UTF-8'
67
67
export TERM=' xterm-256color'
68
+
69
+ export NVM_DIR=" $HOME /.nvm"
70
+ [ -s " $NVM_DIR /nvm.sh" ] && \. " $NVM_DIR /nvm.sh" # This loads nvm
71
+ [ -s " $NVM_DIR /bash_completion" ] && \. " $NVM_DIR /bash_completion" # This loads nvm bash_completion
You can’t perform that action at this time.
0 commit comments