Add config files
This commit is contained in:
commit
a7f17fd2e4
2 changed files with 32 additions and 0 deletions
3
exrc
Normal file
3
exrc
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
set autoindent
|
||||||
|
set number
|
||||||
|
set ruler
|
29
vimrc
Normal file
29
vimrc
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
||||||
|
execute pathogen#infect()
|
||||||
|
|
||||||
|
set autoindent
|
||||||
|
set directory=.,$TEMP
|
||||||
|
set expandtab
|
||||||
|
set linebreak
|
||||||
|
set number
|
||||||
|
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
|
Loading…
Reference in a new issue