psoxizsh/etc/vimrc.local

42 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-01-25 17:12:42 +00:00
set guifont=Fira\ Code\ 11
2017-12-13 13:08:26 +00:00
set nocompatible
2018-01-25 17:12:42 +00:00
colorscheme murphy
2017-12-13 13:08:26 +00:00
syntax on
set background=dark
" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
\| exe "normal! g'\"" | endif
endif
" Uncomment the following to have Vim load indentation rules according to the
" detected filetype. Per default Debian Vim only load filetype specific
" plugins.
if has("autocmd")
filetype indent on
endif
set showcmd " Show (partial) command in status line.
set showmatch " Show matching brackets.
set smartcase " Do smart case matching
set incsearch " Incremental search
set ww=b,s,<,>,[,]
set sta
set visualbell
set mousemodel=popup_setpos
highlight SpellErrors ctermfg=Red guifg=Red cterm=underline gui=underline term=reverse
let spell_language_list = "americanxlg,american,americanmed+,english"
let spell_insert_mode = 1
let spell_executable = "ispell"
let spell_auto_type = ""
"let spell_auto_type = "tex,mail,text,html,sgml,otl,cvs,none"
set modeline
set modelines=7
2018-01-25 17:11:44 +00:00
" vim: syntax=vim