dotfiles/vim/.vimrc
2017-03-19 15:06:55 +01:00

30 lines
592 B
VimL

set encoding=utf-8
set mouse=a
set nocompatible
set number
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
set nowrap
set showcmd
syntax enable
set background=dark
let g:airline_theme='solarized'
let g:airline#extensions#tabline#enabled = 1
let g:solarized_termcolors = 16
let g:airline_powerline_fonts = 1
" let g:airline_symbols_ascii = 1
colorscheme solarized
call plug#begin('~/.vim/plugged')
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'fatih/vim-go'
Plug 'tpope/vim-fugitive'
call plug#end()
autocmd FileType rst setlocal tw=80