-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_vimrc
81 lines (65 loc) · 1.74 KB
/
dot_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
" Vundle Plugin Manager
set nocompatible " required
filetype off " required
set cryptmethod=blowfish2
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Install the Vundles plugins from another file
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
endif
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" END Vundle Plugin Manager
syntax on
colorscheme elflord
set number
set tabstop=4
set shiftwidth=4
set fileencodings=utf-8
set fileencoding=utf-8
set encoding=utf-8
set autoindent
set laststatus=2
set t_Co=256
filetype plugin on
" Folding with space
nnoremap <space> za
"Mapping for the quick-check PHP
map <C-B> :w! !php -l<CR>
"Mappings for the tabs
"map <A-1> gT
"map <A-2> gt
"map <C-S-t> :tabnew
"Mappings for the windows
map wwj :wincmd j<CR>
map wwk :wincmd k<CR>
map wwh :wincmd h<CR>
map wwl :wincmd l<CR>
"Pasting
"set paste
"Search
set incsearch
set ignorecase
" My markdown stuff
" Disable autofolding
let g:vim_markdown_folding_disabled = 1
" My Python stuff
" https://realpython.com/blog/python/vim-and-python-a-match-made-in-heaven/
au BufNewFile,BufRead *.py
\ set tabstop=4 |
\ set softtabstop=4 |
\ set shiftwidth=4 |
\ set textwidth=79 |
\ set expandtab |
\ set autoindent |
\ set fileformat=unix |
" add yaml stuffs
au! BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab