move some vim files, globstar in bash, tmux interactive pane move, add urls, better...
[dotfiles.git] / vim / .vimrc
index 804f1ba..5c63c93 100644 (file)
@@ -1,6 +1,3 @@
-" Package manager
-execute pathogen#infect()
-
 " Automaticly source some files after writing
 autocmd! bufwritepost .vimrc source %
 autocmd! bufwritepost .bashrc !source %
@@ -26,10 +23,11 @@ set colorcolumn=80
 set textwidth=79
 set shiftwidth=4
 set tabstop=4
+set nowrap
 
 " List characters to mark trailing whitespace etc
-"set listchars=nbsp:¬,tab:▸\ ,eol:↩,extends:»,precedes:«,trail:•
-set nolist
+set listchars=nbsp:¬,tab:▸\ ,eol:↩,extends:»,precedes:«,trail:•
+set list
 
 " Move through long lines as they were short multiple lines
 map j gj
@@ -45,6 +43,10 @@ map <TAB>k <C-W>k
 nnoremap n nzzzv
 nnoremap N Nzzzv
 
+" Fold settings
+set foldmethod=marker
+set foldlevelstart=99
+
 " Unbind arrow keys, who has them anyways on the keyboard...
 for prefix in ['i', 'n', 'v']
        for key in ['<UP>', '<DOWN>', '<LEFT>', '<RIGHT>']
@@ -65,3 +67,9 @@ let g:syntastic_always_populate_loc_list = 1
 let g:syntastic_auto_loc_list = 1
 let g:syntastic_check_on_open = 0
 let g:syntastic_check_on_wq = 0
+
+" Vimtex options
+let g:vimtex_compiler_enabled = 0
+
+" Background transparency
+hi Normal guibg=NONE ctermbg=NONE