This repository has been archived on 2021-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.vimrc

72 lines
1.4 KiB
VimL
Raw Normal View History

2018-03-14 15:30:44 +01:00
" require vim
set nocompatible
""" BEGIN VUNDLE
filetype off
" initialize Vundle.vim
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
"" BEGIN VUNDLE PLUGINS
" Install plugins with :PluginInstall
Plugin 'VundleVim/Vundle.vim' " require vundle itself
Plugin 'dart-lang/dart-vim-plugin'
Plugin 'evidens/vim-twig'
Plugin 'nblock/vim-dokuwiki'
Plugin 'cespare/vim-toml'
Plugin 'moll/vim-node'
Plugin 'ElmCast/elm-vim'
Plugin 'posva/vim-vue'
2018-03-19 14:49:05 +01:00
Plugin 'Glench/Vim-Jinja2-Syntax'
2018-04-09 16:38:38 +02:00
Plugin 'wannesm/wmgraphviz.vim'
2018-03-14 15:30:44 +01:00
"" END VUNDLE PLUGINS
call vundle#end()
filetype plugin indent on
""" END VUNDLE
2018-05-05 14:52:52 +02:00
" statusline
python3 from powerline.vim import setup as powerline_setup
python3 powerline_setup()
python3 del powerline_setup
set laststatus=2 " always show powerline
2018-03-14 15:30:44 +01:00
" line numbers
set number
" show line after 80 chars
set colorcolumn=80
" syntax highlighting
syntax enable
" solarized theme
set t_Co=256
set background=dark
colorscheme solarized
" persistent undo
set undofile
set undodir=$HOME/.vim/undo
set undolevels=4096
set undoreload=16384
" highlight and ignore case at search
set hls ic
" tab support
map <F7> :tabp<CR>
map <F8> :tabn<CR>
map <F9> :tabe
" Autoload settings from file bottom
set modeline
" Highlight trailing spaces and spaces before tabs
highlight ExtraWhitespace ctermbg=red guibg=red
autocmd BufWinEnter * match ExtraWhitespace /\s\+$\| \+\ze\t/
2018-03-14 15:30:44 +01:00
" tab settings
set ai
if has("gui_running")
set guifont=Terminus\ 10
endif