-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
54 lines (45 loc) · 1.19 KB
/
vimrc
File metadata and controls
54 lines (45 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
""""""""""""""""""""""""""
" Vundle default setting
""""""""""""""""""""""""""
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Plugin 'c9s/colorselector.vim'
Plugin 'bling/vim-airline'
Plugin 'flazz/vim-colorschemes'
Plugin 'tpope/vim-markdown'
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-scripts/taglist.vim'
Plugin 'vim-scripts/cscope.vim'
Plugin 'wesleyche/Trinity'
Plugin 'scrooloose/syntastic'
Plugin 'spolu/dwm.vim'
Plugin 'majutsushi/tagbar'
let g:syntastic_python_checker_args='--disable=C0111'
call vundle#end() " required
filetype plugin indent on " required
""""""""""""""""""""""
" fateyan's setting
""""""""""""""""""""""
syntax on
set backspace=2
set ruler
set hls
set background=dark
set t_Co=256
set laststatus=2
set smarttab
set expandtab
set tabstop=4
set shiftwidth=4
set cursorline
set nu
nmap <C-F1> :TagbarToggle<CR>
nmap <C-F2> :NERDTreeToggle<CR>
nmap <ESC>[1;2P :TagbarToggle<CR>
nmap <ESC>[1;2Q :NERDTreeToggle<CR>
nmap <C-@> :call DWM_Focus()<CR>
colorscheme atom