-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
executable file
·72 lines (69 loc) · 1.52 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
" Helptags
syntax on
filetype plugin indent on
set nocompatible
set noerrorbells
set list listchars=tab:»·,trail:·
set hidden
set nostartofline
set laststatus=2
set autoread
set autowrite
set clipboard=unnamedplus
set tabstop=4
set shiftwidth=4
set softtabstop=4
set smarttab
set expandtab
set autoindent
set cindent
set copyindent
set smartindent
set novisualbell
set nocursorcolumn
set norelativenumber
set noerrorbells
set nobackup
set noswapfile
set smartcase
set nohlsearch
set incsearch
set lazyredraw
set magic
set ignorecase
set showtabline=1
set encoding=utf-8
set nospell
set nowrap
set number
set showcmd
set guioptions-=m
set guioptions-=T
set guioptions-=r
set guioptions-=L
set wildignore+=*/heart/**
set wildignore+=*/storage/**
set wildignore+=/node_modules/**
set wildignore+=*/public/bower_components/**
set wildignore+=*.DS_Store
set wildignore+=*.jpg,*.jpeg,*.png,*.gif,*.ttf,*.tga,*.dds,*.ico,*.eot,*.pdf,*.swf,*.jar,*.zip,*bmp
set wildignore+=*.swp,*.bak,*.pyc,*.class
" set guifont=Droid\ Sans\ Mono\ for\ Powerline\ Plus\ Nerd\ File\ Types\ 12
" set guifont=Source\ CodePro\ Regular\ 13
set guifont=Ubuntu\ Mono\ 12
" set guifont=Anonymous\ Pro\ 13
" set guifont=Inconsolata\ for\ Powerline\ Plus\ Nerd\ File\ Types\ 13
set lines=500 columns=200
set linespace=15
set mouse=a
set cursorline
set background=dark
if $COLORTERM == 'gnome-terminal'
if !has('gui_running')
set t_Co=256
endif
endif
" hi Directory guifg=#16A085 guibg=#000000
for f in split(glob('~/.vim/vimrcs/*.vim'), '\n')
exe 'source' f
endfor