blob: 07069fa2d6fefcec308d480069c33463df35a788 (
plain)
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
|
" Vundle stuff ----------------------------------------------
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Post to Wordpress using MarkDown
Plugin 'ekaitz-zarraga/droWMark'
" Navigate in directory tree
Plugin 'scrooloose/nerdtree'
" Add plugins here
call vundle#end() " required
" / Vundle stuff end ----------------------------------------
" Allow backspace always
set backspace=indent,eol,start
" Activate syntax highlighting by default
syntax on
" Different config for each filetype
filetype plugin on
" Show trailing spaces
highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+$/
autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
autocmd InsertLeave * match ExtraWhitespace /\s\+$/
autocmd BufWinLeave * call clearmatches()
autocmd ColorScheme * highlight ExtraWhitespace ctermbg=red guibg=red
" Clear trailing spaces on <F2>
function TrimWhiteSpace()
%s/\s*$//
''
:endfunction
nnoremap <F2> :call TrimWhiteSpace()<CR>
" Fold
set foldmethod=syntax
set foldlevelstart=99
" HighLight search and map CarrierReturn to remove highlight
set hlsearch
nnoremap <CR> :noh<CR><CR>
" Ignore Case in search
set ignorecase
set smartcase
" Always show tabline (0=never, 1=when there are at least 2 tabs, 2=always)
set showtabline=2
" Mouse support
set mouse=a
" Set default colorscheme but dark comments -> Torte
colorscheme torte
|