Disable ideavim bell and add scpace
This commit is contained in:
parent
93c92d7a22
commit
f4bae0f002
|
@ -1,5 +1,7 @@
|
||||||
set nocompatible " be iMproved, required
|
set nocompatible " be iMproved, required
|
||||||
filetype off " required
|
filetype off " required
|
||||||
|
set visualbell
|
||||||
|
set noerrorbells
|
||||||
|
|
||||||
" set the runtime path to include Vundle and initialize
|
" set the runtime path to include Vundle and initialize
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
|
@ -63,3 +65,4 @@ set nohlsearch
|
||||||
|
|
||||||
" Save with sudo
|
" Save with sudo
|
||||||
cnoremap w!! execute 'silent! write !sudo tee % >/dev/null' <bar> edit!
|
cnoremap w!! execute 'silent! write !sudo tee % >/dev/null' <bar> edit!
|
||||||
|
set ideajoin
|
|
@ -4,6 +4,10 @@ function fin {
|
||||||
find -iname "*$@*"
|
find -iname "*$@*"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function scpace {
|
||||||
|
scp -P 11275 $@
|
||||||
|
}
|
||||||
|
|
||||||
function gamp {
|
function gamp {
|
||||||
git add * && git commit -am "$1" && git push
|
git add * && git commit -am "$1" && git push
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue