From 3f904f4c5c8a484fed5d92759922aa1319e8f074 Mon Sep 17 00:00:00 2001 From: Bruno Carlin Date: Sun, 19 Mar 2017 15:06:55 +0100 Subject: [PATCH] add vim --- vim/.vimrc | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 vim/.vimrc diff --git a/vim/.vimrc b/vim/.vimrc new file mode 100644 index 0000000..ce6c7f9 --- /dev/null +++ b/vim/.vimrc @@ -0,0 +1,30 @@ +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