Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

俺のvim

$
0
0

基本はコマンドの羅列。
setは
letは値の代入という意味

俺の.vimrc

set fencs=utf-8

set noswapfile "swap file(backup file を作らない。)

let g:do_xhtml_mappings = 'yes'

https://gist.github.com/romainl/9970697
execute pathogen#infect()

filetype plugin indent on

syntax on

set rtp+=~/.vim/bundle/Vundle.vim

25 Plugin 'gmarik/Vundle.vim'
26 " Plugins
27
28 Plugin 'davidoc/taskpaper.vim'
29 Plugin 'vim-scripts/vimwiki'
30 Plugin 'vim-scripts/VimClojure'
31 Plugin 'othree/html5.vim'
32 Plugin 'kchmck/vim-coffee-script'
33 Plugin 'scrooloose/syntastic'
34 Plugin 'nathanaelkane/vim-indent-guides'
35 Plugin 'groenewege/vim-less'
36 Plugin 'nginx.vim'
37 Plugin 'stephpy/vim-yaml'
38 Plugin 'kien/ctrlp.vim'

48 NeoBundle 'Flake8-vim'
49 NeoBundle 'davidhalter/jedi-vim'
50 NeoBundle 'hynek/vim-python-pep8-indent'
51 NeoBundle 'Townk/vim-autoclose'
52 NeoBundle 'scrooloose/syntastic'

60 "保存時に自動でチェック
61 let g:PyFlakeOnWrite = 1
62 let g:PyFlakeCheckers = 'pep8,mccabe,pyflakes'
63 let g:PyFlakeDefaultComplexity=10
64
65 let g:syntastic_python_checkers = ['pyflakes', 'pep8']


Viewing all articles
Browse latest Browse all 5608

Trending Articles