about summary refs log tree commit diff
path: root/vim/.vim/vimrc
blob: 260548bc3359bb9a27a9e0ab9beeddb963e2e5a3 (plain) (blame)
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
execute pathogen#infect()
filetype plugin indent on
syntax enable
set nocompatible
set undodir=~/.cache/vim/undo
set directory=~/.cache/vim/swap
set backupdir=~/.cache/vim/backup
set viminfo+=n~/.cache/vim/viminfo
set clipboard=exclude:cons\|linux
set hidden
set wildmenu
set showcmd
set nostartofline
set ruler
set confirm
set list listchars+=tab:\|\ 
set number relativenumber lazyredraw
set tabstop=8 expandtab shiftwidth=4 softtabstop=4 smarttab
set omnifunc=syntaxcomplete#Complete
set tags+=~/.vim/systags
set dictionary=/usr/share/dict/words
set keymap=vietnamese-telex imdisable iminsert=0 imsearch=-1
autocmd BufNewFile,BufRead *.PAS set filetype=pascal
autocmd FileType vim,pascal setlocal shiftwidth=2 tabstop=2
autocmd FileType c setlocal noexpandtab shiftwidth=8 tabstop=8
autocmd FileType markdown setlocal textwidth=79
autocmd FileType python syntax keyword pythonBoolean False True None
autocmd BufWinEnter * let w:m1=matchadd('ColorColumn', '\%<81v.\%>80v', -1)