mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
Round 1 of files
This commit is contained in:
parent
a4bc5977cf
commit
0673e01c0a
12 changed files with 187 additions and 0 deletions
35
link/nix/vimrc
Normal file
35
link/nix/vimrc
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
execute pathogen#infect()
|
||||
syntax on
|
||||
|
||||
filetype indent plugin on
|
||||
|
||||
set encoding=utf-8
|
||||
set termencoding=utf-8
|
||||
|
||||
set autoindent
|
||||
set background=dark
|
||||
set expandtab
|
||||
set fillchars+=stl:\ ,stlnc:\
|
||||
set laststatus=2
|
||||
set nocompatible
|
||||
set smarttab
|
||||
set statusline+=%#warningmsg#
|
||||
set statusline+=%{SyntasticStatuslineFlag()}
|
||||
set statusline+=%*
|
||||
set t_Co=256
|
||||
|
||||
colorscheme solarized
|
||||
|
||||
let g:syntastic_always_populate_loc_list = 1
|
||||
let g:syntastic_auto_loc_list = 1
|
||||
let g:syntastic_check_on_open = 1
|
||||
let g:syntastic_check_on_wq = 0
|
||||
let g:syntastic_enable_signs = 1
|
||||
let g:syntastic_ruby_checkers = ['rubocop']
|
||||
let g:syntastic_quiet_messages = {'level': 'warnings'}
|
||||
let g:vim_markdown_folding_disabled = 1
|
||||
|
||||
python from powerline.vim import setup as powerline_setup
|
||||
python powerline_setup()
|
||||
python del powerline_setup
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue