a bit of a cleanup + some fixes
This commit is contained in:
parent
25a54216ac
commit
d827527595
4 changed files with 4 additions and 8 deletions
|
@ -7,7 +7,7 @@ allow_bold = false
|
|||
dynamic_title = true
|
||||
urgent_on_bell = true
|
||||
clickable_url = true
|
||||
font = Terminus Bold 11
|
||||
font = Fantasque Sans Mono 11
|
||||
scrollback_lines = 10000
|
||||
search_wrap = true
|
||||
icon_name = terminal
|
||||
|
@ -42,6 +42,6 @@ color14 = #93a1a1
|
|||
color15 = #fdf6e3
|
||||
|
||||
[hints]
|
||||
font = Terminus 9
|
||||
font = Fantasque Sans Mono 9
|
||||
|
||||
# vim: ft=dosini cms=#%s
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
" vim: set ft=vimperator:
|
||||
|
||||
set hintchars="qwertyuiop[]asdfghjkl;'zxcvbnm,./"
|
||||
set toolbars=addons,nobookmarks,nomenu,nonavigation,tabs
|
4
vimrc
4
vimrc
|
@ -63,12 +63,12 @@ nmap qw :wq<CR>
|
|||
nmap <Leader>w :w<CR>
|
||||
|
||||
" still have to deal with old vim versions :<
|
||||
if v:version >= 703
|
||||
if has("nvim") || v:version >= 703
|
||||
set colorcolumn=80
|
||||
set relativenumber
|
||||
nnoremap <Leader>r :setlocal relativenumber!<CR>
|
||||
endif
|
||||
if v:version >= 800
|
||||
if has("nvim") || v:version >= 800
|
||||
set breakindent
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue