-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
executable file
·89 lines (78 loc) · 1.79 KB
/
.vimrc
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
set nocompatible " be iMproved, required
filetype off
" set the runtime path to include Vundle and initialize
set modeline
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'AutoComplPop'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Bundle 'L9'
"Bundle 'https://github.com/Lokaltog/vim-powerline.git'
Bundle 'https://github.com/tpope/vim-fugitive'
"Bundle 'clang-complete'
Bundle 'node.js'
Bundle 'css3-syntax-plus'
Bundle 'google_prettify.vim'
Bundle 'jslint.vim'
Bundle 'vim-coffee-script'
Bundle 'jade.vim'
Bundle 'FuzzyFinder'
call vundle#end() " required
filetype plugin indent on " required
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-airline
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set laststatus=2
let g:airline_powerline_fonts = 1
let g:airline_theme = 'wombat'
let g:netrw_dirhistmax = 0
let g:airline#extensions#tabline#enabled = 1
syn on
set nobackup
set cindent
set autoindent
set smartindent
set incsearch
set backspace=eol,start,indent
set history=1000
set hlsearch
set ignorecase
set showmatch
set nu
set tabstop=4
set smarttab
set softtabstop=4
set expandtab
set shiftwidth=4
"14.01.07 updated.
set encoding=utf-8
"14.06.02 updated.
set cindent
set cinoptions=g-1
"19.05.15 updated.
set mouse+=a
set cmdheight=2
" Turn on the WiLd menu
set wildmenu
" Ignore compiled files
set wildignore=*.o,*~,*.pyc
if has("win16") || has("win32")
set wildignore+=.git\*,.hg\*,.svn\*
else
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store
endif
" Colorscheme
set background=dark
colorscheme molokai
"14.01.18 updated.
set title
map<F2> gT
map<F3> gt
:command WQ wq
:command Wq wq
:command W w
set exrc
let $JS_CMD='node'