diff --git a/.gitignore b/.gitignore index 50e38f4..855af39 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ .idea -.vim/bundle/* -encrypt -decrypt +.vim/bundle/ +*.sw[op] +.env +*.log +Session.vim diff --git a/.vim/.vimrc b/.vim/.vimrc index 02207eb..4b0a095 100644 --- a/.vim/.vimrc +++ b/.vim/.vimrc @@ -33,6 +33,8 @@ set nowrap set noerrorbells set novisualbell +set showcmd +set showtabline=2 set ignorecase set smartcase diff --git a/Makefile b/Makefile index e763c42..6897c46 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ backup: mv ~/.subbash ~/.subbash.bak || true mv ~/.tmux.conf ~/.tmux.conf.bak || true mv ~/.gitconfig ~/.gitconfig.bak || true + mv ~/.gitignore ~/.gitignore.bak || true install: ln -s $(PWD)/.subbash ~ || true @@ -31,4 +32,5 @@ ssh: git: ln -s $(PWD)/.gitconfig ~ || true + ln -s $(PWD)/.gitignore ~ || true