gitignore

This commit is contained in:
TheK4n 2021-12-24 22:22:48 +00:00
parent e12f051f0f
commit 9f81e9957c
3 changed files with 9 additions and 3 deletions

8
.gitignore vendored
View File

@ -1,5 +1,7 @@
.idea .idea
.vim/bundle/* .vim/bundle/
encrypt *.sw[op]
decrypt .env
*.log
Session.vim

View File

@ -33,6 +33,8 @@ set nowrap
set noerrorbells set noerrorbells
set novisualbell set novisualbell
set showcmd
set showtabline=2
set ignorecase set ignorecase
set smartcase set smartcase

View File

@ -9,6 +9,7 @@ backup:
mv ~/.subbash ~/.subbash.bak || true mv ~/.subbash ~/.subbash.bak || true
mv ~/.tmux.conf ~/.tmux.conf.bak || true mv ~/.tmux.conf ~/.tmux.conf.bak || true
mv ~/.gitconfig ~/.gitconfig.bak || true mv ~/.gitconfig ~/.gitconfig.bak || true
mv ~/.gitignore ~/.gitignore.bak || true
install: install:
ln -s $(PWD)/.subbash ~ || true ln -s $(PWD)/.subbash ~ || true
@ -31,4 +32,5 @@ ssh:
git: git:
ln -s $(PWD)/.gitconfig ~ || true ln -s $(PWD)/.gitconfig ~ || true
ln -s $(PWD)/.gitignore ~ || true