blob: 3f43115f2ea425110af132dd7834e68ebdf03fb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
runtime ftplugin/man.vim
nmap K :Man <cword><CR>
set number relativenumber lazyredraw
set guifont=Latin\ Modern\ Mono\ 12
set guioptions=Pc
set guicursor+=a:blinkon0
if has("patch-7.4.710")
set listchars+=space:·,tab:\ \
endif
set background=dark
colorscheme gruvbox
autocmd FileType python syntax keyword pythonBoolean False True None
|