nvim using vimrc yay
This commit is contained in:
parent
044f992c88
commit
e950da7742
2 changed files with 3 additions and 1 deletions
3
shellrc
3
shellrc
|
@ -50,6 +50,9 @@ alias atmux='tmux attach'
|
||||||
alias hist='fc -l 1'
|
alias hist='fc -l 1'
|
||||||
alias beep='printf "\007"'
|
alias beep='printf "\007"'
|
||||||
alias fixterm='printf "c"'
|
alias fixterm='printf "c"'
|
||||||
|
if (is_exec nvim && [[ -r ${HOME}/.vimrc ]]); then
|
||||||
|
alias nvim='command nvim -u ~/.vimrc'
|
||||||
|
fi
|
||||||
|
|
||||||
# iconv
|
# iconv
|
||||||
alias iconvwk='command iconv -c -f cp1251 -t koi8-r'
|
alias iconvwk='command iconv -c -f cp1251 -t koi8-r'
|
||||||
|
|
1
vimrc
1
vimrc
|
@ -1,7 +1,6 @@
|
||||||
set nocompatible
|
set nocompatible
|
||||||
set background=light
|
set background=light
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set clipboard=exclude:.*
|
|
||||||
set cursorline
|
set cursorline
|
||||||
set foldmethod=marker
|
set foldmethod=marker
|
||||||
set history=50
|
set history=50
|
||||||
|
|
Loading…
Reference in a new issue