dot/.vimrc

60 lines
1.2 KiB
VimL
Raw Normal View History

2017-02-19 10:20:24 +01:00
set ai
" Disable (ab)use of X11 selection
set clipboard=
set comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-,n:\|
2017-02-19 09:37:36 +01:00
set expandtab
2017-02-19 10:20:24 +01:00
set exrc
2021-10-08 10:32:32 +02:00
set hls
2017-02-19 10:20:24 +01:00
set list
set listchars=tab:»·,trail
set modeline
set nojoinspaces
set nrformats-=octal
set nrformats+=hex
2017-02-19 10:20:24 +01:00
set nu
set printoptions=paper:A4,formfeed:y,portrait:n,number:y,left:10mm,right:10mm
set ruler
set scrolloff=5
2017-02-19 10:20:24 +01:00
set secure
set sm
set sw=4
set tw=72
set viminfo='100,<50,s10,h,%
2019-05-18 10:25:23 +02:00
if has('reltime')
set incsearch
endif
2017-10-19 12:23:16 +02:00
2019-05-18 10:25:23 +02:00
if $BG == "light"
set bg=light
colorscheme hjp
syntax on
elseif $BG == "dark"
set bg=dark
syntax on
endif
2017-02-19 10:20:24 +01:00
map <F7> :cp
map <F8> :cn
map!  >I<yypa/O
map! [27;5;101~ >I<yypa/O
2017-02-19 10:20:24 +01:00
autocmd FileType perl let perl_fold=1
autocmd FileType perl syntax on
2019-08-03 18:01:43 +02:00
autocmd FileType go set sw=8
autocmd FileType go set tw=79
autocmd FileType go set noexpandtab
autocmd BufRead,BufNewFile *.ts set filetype=javascript
autocmd FileType javascript set sw=2
2022-04-23 01:10:36 +02:00
autocmd FileType javascript set tw=132
autocmd FileType html set sw=2
2020-03-27 10:53:34 +01:00
autocmd FileType crontab set tw=0
autocmd BufRead,BufNewFile redmine*.txt set filetype=textile
autocmd FileType textile set tw=0 linebreak
autocmd FileType python set tw=79