123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- set nocompatible
- filetype off
- set rtp+=~/.vim/bundle/Vundle.vim
- call vundle#begin()
- Plugin 'VundleVim/Vundle.vim'
- Plugin 'captbaritone/better-indent-support-for-php-with-html'
- Plugin 'https://gogs.jovian-hersemeule.eu/Vim/BonitaLog.git'
- Plugin 'dag/vim-fish'
- Plugin 'tpope/vim-endwise'
- Plugin 'alvan/vim-closetag'
- Plugin 'quabug/vim-gdscript'
- Plugin 'whiteinge/diffconflicts'
- Plugin 'tpope/vim-unimpaired'
- Plugin 'tpope/vim-repeat'
- Plugin 'embear/vim-localvimrc'
- call vundle#end()
- let g:localvimrc_ask=0
- set shiftwidth=4
- set tabstop=4
- " When started as "evim
- if v:progname =~? "evim"
- finish
- endif
- if &compatible
- set nocompatible
- endif
- silent! while 0
- set nocompatible
- silent! endwhile
- set backspace=indent,eol,start
- set history=200
- set ruler
- set showcmd
- set wildmenu
- set ttimeout
- set ttimeoutlen=100
- set display=truncate
- set scrolloff=5
- if has('reltime')
- set incsearch
- endif
- set nrformats-=octal
- " Revert with ":unmap Q
- map Q gq
- " Revert with ":iunmap <C-U>
- inoremap <C-U> <C-G>u<C-U>
- if &t_Co > 2 || has("gui_running")
- " Revert with ":syntax off
- syntax on
-
- " Revert with ":unlet c_comment_strings
- let c_comment_strings=1
- endif
- if has("autocmd")
-
-
-
-
- " Revert with ":filetype off
- filetype plugin indent on
-
- " ":augroup vimStartup | au! | augroup END
- augroup vimrcEx
- au!
-
-
-
-
- autocmd BufReadPost *
- \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit'
- \ | exe "normal! g`\""
- \ | endif
-
- autocmd FileType text setlocal textwidth=78
- augroup END
- else
- set autoindent
- endif " has("autocmd
- " Revert with: ":delcommand DiffOrig
- if !exists(":DiffOrig")
- command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
- \ | wincmd p | diffthis
- endif
- if has('langmap') && exists('+langremap')
-
-
-
- set nolangremap
- endif
- set nobackup
- if has('persistent_undo')
- set undofile
- set undodir=/tmp/
- endif
- if has('syntax') && has('eval')
- packadd! matchit
- endif
|