summaryrefslogtreecommitdiffstats
path: root/infest/profiles/makefu/vim/vimrc
blob: 69ff3f58d65605ad50230cb3575a3180bbef66fd (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
" not so original .vimrc 
" 2011-11-29
"
" Vundle
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle
call vundle#rc()

Bundle 'gmarik/vundle'
Bundle 'SudoEdit.vim'
Bundle 'snipMate'
Bundle 'tpope/vim-fugitive'
Bundle 'pyflakes'

filetype plugin indent on

"
set vb
let g:snips_author = 'Bob Ross <root@syntax-fehler.de>'
let g:makefu_author = 'makefu'

""" just for tex

let g:compiler_gcc_ignore_unmatched_lines=1 " ignore for gcc and SCONS
" compiler gcc
set foldenable
set foldmethod=syntax
" shows matching braches etc
set showmatch
set matchtime=3
" highlight search
set hlsearch

let g:load_doxygen_syntax=1

" we do not want any filename~ files    
" set noswapfile
" set nobackup
set backupdir=~/.vim/backup
set directory=~/.vim/backup

" turn off F1
"
inoremap <F1> <ESC>
nnoremap <F1> <ESC>
vnoremap <F1> <ESC>

" save on focus lost
au FocusLost * :wa

"let TlistAddFilesRecursive = /home/makefu/repos/P2P_MDS " *.cpp *.hpp
let Tlist_Exit_OnlyWindow =1 " exit if other window is closed
nnoremap <silent> <F8> :TlistToggle<CR>
set spelllang=en
" use set spell to enable spelling

" press ttt to rot16 the whole file
nmap ttt ggg?G

colorscheme darkblue
set background=dark

set number
set mouse=
set textwidth=9001
set ignorecase 
set incsearch
set wildignore=*.o,*.obj,*.bak,*.exe,*.os
set shiftwidth=2

syntax on
"For tabstop = 2 spaces
    
set tabstop=2
set et
set sw=2
set smarttab
set autoindent
" end tabstop


set backspace=indent,eol,start
set nocp


" python stuff
" run python code with f5
"autocmd FileType python map <F5> :w<CR>:!python "%"<CR>
" pydiction
"let g:pydiction_location = '~/.vim/plugin/pydiction/complete-dict'

" automatically open and close the popup menu / preview window
au CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif
set completeopt=menuone,menu,longest,preview

" somewhere before nowrap is set
set wrap

autocmd BufRead *.json set filetype=json
autocmd FileType json set equalprg=json_reformat
autocmd FileType json set makeprg=jsonval\ %
autocmd FileType json set errorformat=%E%f:\ %m\ at\ line\ %l,%-G%.%#

au  BufNewFile,BufRead *.mustache set syntax=mustache