Disable ideavim bell and add scpace

This commit is contained in:
Sage Vaillancourt 2023-12-16 12:20:25 -05:00
parent 93c92d7a22
commit f4bae0f002
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,7 @@
set nocompatible " be iMproved, required
filetype off " required
set visualbell
set noerrorbells
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
@ -63,3 +65,4 @@ set nohlsearch
" Save with sudo
cnoremap w!! execute 'silent! write !sudo tee % >/dev/null' <bar> edit!
set ideajoin

View File

@ -4,6 +4,10 @@ function fin {
find -iname "*$@*"
}
function scpace {
scp -P 11275 $@
}
function gamp {
git add * && git commit -am "$1" && git push
}