nvim/vimrc

33 lines
591 B
VimL
Raw Normal View History

2015-10-13 10:33:23 +00:00
set nocompatible
2015-10-13 10:01:04 +00:00
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
2015-10-13 10:33:23 +00:00
filetype plugin indent on
2015-10-13 10:01:04 +00:00
set autoindent
set directory=.,$TEMP
set expandtab
set linebreak
set number
2015-10-13 11:08:28 +00:00
set omnifunc=syntaxcomplete#Complete
2015-10-13 10:01:04 +00:00
set printoptions=paper:A4,duplex:off,header:0
set ruler
set shiftwidth=4
set tabstop=4
set wrap
syntax on
if has("gui_running")
if has("gui_gtk2")
set guifont=Monospace\ 10
elseif has("gui_win32")
set guifont=Consolas:h10:cANSI
endif
set background=dark
set columns=88
set lines=40
colorscheme solarized
endif