vimrc 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. " Vundle plugin manager
  2. set nocompatible
  3. filetype off
  4. set rtp+=~/.vim/bundle/Vundle.vim
  5. call vundle#begin()
  6. Plugin 'VundleVim/Vundle.vim' " Keep the plugin manager itself updated
  7. Plugin 'captbaritone/better-indent-support-for-php-with-html' " Edit html files ending with php
  8. Plugin 'https://gogs.jovian-hersemeule.eu/Vim/BonitaLog.git' " Highlight useful information in Tomcat logs
  9. Plugin 'dag/vim-fish' " Full fish modular support
  10. Plugin 'tpope/vim-endwise' " Automatically close things like adding `end` in fish scripts
  11. Plugin 'alvan/vim-closetag' " Automatically close html tags
  12. Plugin 'quabug/vim-gdscript' " Old plugin for GoDot 3 syntax highlighting
  13. Plugin 'whiteinge/diffconflicts' " Two-ways git merge tool
  14. Plugin 'tpope/vim-unimpaired' " Add useful bracket shortcuts
  15. Plugin 'tpope/vim-repeat' " Allow custom commands from vim-unimpaired to be repeated with the dot command
  16. call vundle#end()
  17. " Make hard tab look like 4 spaces tabs
  18. set shiftwidth=4
  19. set tabstop=4
  20. " When started as "evim", evim.vim will already have done these settings.
  21. if v:progname =~? "evim"
  22. finish
  23. endif
  24. " Use Vim settings, rather than Vi settings (much better!).
  25. " This must be first, because it changes other options as a side effect.
  26. " Avoid side effects when it was already reset.
  27. if &compatible
  28. set nocompatible
  29. endif
  30. " When the +eval feature is missing, the set command above will be skipped.
  31. " Use a trick to reset compatible only when the +eval feature is missing.
  32. silent! while 0
  33. set nocompatible
  34. silent! endwhile
  35. " Allow backspacing over everything in insert mode.
  36. set backspace=indent,eol,start
  37. set history=200
  38. set ruler
  39. set showcmd " display incomplete commands
  40. set wildmenu " display completion matches in a status line
  41. set ttimeout " time out for key codes
  42. set ttimeoutlen=100 " wait up to 100ms after Esc for special key
  43. " Show @@@ in the last line if it is truncated.
  44. set display=truncate
  45. " Show a few lines of context around the cursor. Note that this makes the
  46. " text scroll if you mouse-click near the start or end of the window.
  47. set scrolloff=5
  48. " Do incremental searching when it's possible to timeout.
  49. if has('reltime')
  50. set incsearch
  51. endif
  52. " Do not recognize octal numbers for Ctrl-A and Ctrl-X
  53. set nrformats-=octal
  54. " Don't use Ex mode, use Q for formatting.
  55. " Revert with ":unmap Q".
  56. map Q gq
  57. " CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo,
  58. " so that you can undo CTRL-U after inserting a line break.
  59. " Revert with ":iunmap <C-U>".
  60. inoremap <C-U> <C-G>u<C-U>
  61. " Switch syntax highlighting on when available
  62. if &t_Co > 2 || has("gui_running")
  63. " Revert with ":syntax off".
  64. syntax on
  65. " I like highlighting strings inside C comments.
  66. " Revert with ":unlet c_comment_strings".
  67. let c_comment_strings=1
  68. endif
  69. " Only do this part when compiled with support for autocommands.
  70. if has("autocmd")
  71. " Enable file type detection.
  72. " Use the default filetype settings, so that mail gets 'tw' set to 72,
  73. " 'cindent' is on in C files, etc.
  74. " Also load indent files, to automatically do language-dependent indenting.
  75. " Revert with ":filetype off".
  76. filetype plugin indent on
  77. " Put these in an autocmd group, so that you can revert them with:
  78. " ":augroup vimStartup | au! | augroup END"
  79. augroup vimrcEx
  80. au!
  81. " When editing a file, always jump to the last known cursor position.
  82. " Don't do it when the position is invalid, when inside an event handler
  83. " (happens when dropping a file on gvim) and for a commit message (it's
  84. " likely a different one than last time).
  85. autocmd BufReadPost *
  86. \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit'
  87. \ | exe "normal! g`\""
  88. \ | endif
  89. " For all text files set 'textwidth' to 78 characters.
  90. autocmd FileType text setlocal textwidth=78
  91. augroup END
  92. else
  93. set autoindent " always set autoindenting on
  94. endif " has("autocmd")
  95. " Convenient command to see the difference between the current buffer and the
  96. " file it was loaded from, thus the changes you made.
  97. " Only define it when not defined already.
  98. " Revert with: ":delcommand DiffOrig".
  99. if !exists(":DiffOrig")
  100. command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
  101. \ | wincmd p | diffthis
  102. endif
  103. if has('langmap') && exists('+langremap')
  104. " Prevent that the langmap option applies to characters that result from a
  105. " mapping. If set (default), this may break plugins (but it's backward
  106. " compatible).
  107. set nolangremap
  108. endif
  109. set nobackup " do not keep a backup file, use versions instead
  110. if has('persistent_undo')
  111. set undofile " keep an undo file (undo changes after closing)
  112. set undodir=/tmp/
  113. endif
  114. " Add optional packages.
  115. "
  116. " The matchit plugin makes the % command work better, but it is not backwards
  117. " compatible.
  118. " The ! means the package won't be loaded right away but when plugins are
  119. " loaded during initialization.
  120. if has('syntax') && has('eval')
  121. packadd! matchit
  122. endif