Add some missing packages
[dotfiles.git] / vim / .vimrc
index 6740250..e70d8b5 100644 (file)
@@ -1,7 +1,5 @@
 " Automaticly source some files after writing
 autocmd! bufwritepost .vimrc source %
-autocmd! bufwritepost .bashrc !source %
-autocmd! bufwritepost .Xresources !xrdb -merge %
 
 " Some general options
 syntax enable
@@ -33,9 +31,11 @@ set list
 map j gj
 map k gk
 
-" Custom split switching using tab
-map <TAB>l <C-W>l
-map <TAB>h <C-W>h
+" Custom split and tabswitching using tab
+map <TAB>l <C-PageDown>
+map <TAB>h <C-PageUp>
+map <TAB><TAB>l <C-W>l
+map <TAB><TAB>h <C-W>h
 map <TAB>j <C-W>j
 map <TAB>k <C-W>k
 
@@ -44,7 +44,7 @@ nnoremap n nzzzv
 nnoremap N Nzzzv
 
 " Fold settings
-set foldmethod=syntax
+set foldmethod=marker
 set foldlevelstart=99
 
 " Unbind arrow keys, who has them anyways on the keyboard...
@@ -70,3 +70,6 @@ let g:syntastic_check_on_wq = 0
 
 " Vimtex options
 let g:vimtex_compiler_enabled = 0
+
+" Background transparency
+hi Normal guibg=NONE ctermbg=NONE