summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-03-30 22:25:20 +0200
committerGitHub <noreply@github.com>2020-03-30 22:25:20 +0200
commita2297eecfd808f8ce76a6c906df2856967c26aec (patch)
treeaa415f2ac3ec17d2e847296e219a4d725f1d162b /.vimrc
parent888a0d29a41d8ddadf6085d807acfaf80a05ce12 (diff)
Update .vimrc
Diffstat (limited to '.vimrc')
-rwxr-xr-x.vimrc14
1 files changed, 13 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index e1a2b68..387b70d 100755
--- a/.vimrc
+++ b/.vimrc
@@ -9,13 +9,22 @@ Plugin 'VundleVim/Vundle.vim'
Plugin 'rust-lang/rust.vim'
Plugin 'airblade/vim-gitgutter'
+augroup remember_folds
+ autocmd!
+ autocmd BufWinLeave * mkview
+ autocmd BufWinEnter * silent! loadview
+augroup END
+
set ai
set autoread
set encoding=utf-8
set history=1000
set wildignore+=*.pyc
set wrap
-set paste
+set hlsearch
+set incsearch
+set visualbell
+set laststatus=2
call vundle#end() " required
filetype plugin indent on " required
@@ -23,4 +32,7 @@ set nocompatible " be iMproved, required
filetype off " required
syntax on
+
colorscheme gruvbox-hard
+"colorscheme synthwave
+set showcmd