enable calendar, add urls newsboat, update to tl2019, output jpg for resize script...
[dotfiles.git] / vim / .vimrc
index 42d87df..3479ab3 100644 (file)
@@ -5,6 +5,8 @@ autocmd! bufwritepost .vimrc source %
 syntax enable
 filetype indent plugin on
 color torte
+
+" Settings
 set encoding=utf-8
 set history=1000
 set number
@@ -22,8 +24,11 @@ set textwidth=79
 set shiftwidth=4
 set tabstop=4
 set nowrap
-
-" List characters to mark trailing whitespace etc
+set lazyredraw
+set smartcase
+set ignorecase
+set scrolloff=1
+set sidescrolloff=1
 set listchars=nbsp:¬,tab:▸\ ,eol:↩,extends:»,precedes:«,trail:•
 set list
 
@@ -57,7 +62,7 @@ map Q <Nop>
 set foldmethod=marker
 set foldlevelstart=99
 
-" Unbind arrow keys, who has them anyways on the keyboard...
+" Unbind arrow keys, who has them anyway on the keyboard...
 for prefix in ['i', 'n', 'v']
        for key in ['<UP>', '<DOWN>', '<LEFT>', '<RIGHT>']
                exe prefix . "noremap " . key . " <Nop>"
@@ -80,6 +85,3 @@ let g:syntastic_check_on_wq = 0
 
 " Vimtex options
 let g:vimtex_compiler_enabled = 0
-
-" Background transparency
-hi Normal guibg=NONE ctermbg=NONE