-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
80 lines (58 loc) · 1.37 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
set nocompatible " for vundle
filetype off " for vundle
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
Bundle 'altercation/vim-colors-solarized'
Bundle 'scrooloose/nerdtree'
Bundle 'editorconfig/editorconfig-vim'
Bundle 'joonty/vim-phpqa.git'
filetype plugin indent on " for vundle
python from powerline.vim import setup as powerline_setup
python powerline_setup()
python del powerline_setup
let g:phpqa_codesniffer_args = "--standard=PSR2"
syntax on
set t_Co=256
set background=light
"set background=light
colorscheme solarized
set shortmess +=I
let mapleader=","
set highlight=lub
map <Leader>s :set hlsearch<CR>
map <Leader>S :set nohlsearch<CR>
set incsearch
set wrapscan
set mouse=a
set mousemodel=popup
set nobackup nowb noswapfile
set laststatus=2
set ruler
set number
set showcmd
set showmode
set laststatus=2
set scrolloff=1
set wildmenu
set wildmode=longest:full
set cursorline
set backspace=indent,eol,start
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set shiftround
set smartindent
set autoindent
set encoding=utf-8
set listchars=precedes:.,tab:».,eol:¶,trail:-
set list
set wrap
set linebreak
set textwidth=0
set wrapmargin=0
map <C-n> :NERDTreeToggle<CR>
au BufRead,BufNewFile *.twig set filetype=xhtml