我的 vim 配置出了点问题。
这是我得到的home/user/.gvimrc
syntax enable "Enable syntax hl
colorscheme peaksea
set background=dark
set gfn=Inconsolata:h11
set nonu
set history=1000
set scrolloff=3
set number " turn on line numbers
" Save a global session file on session close
nmap SQ <ESC>:mksession! ~/.vim/session/Session.vim<CR>:wqa<CR>
function! RestoreSession()
if argc() == 0 "vim called without arguments
execute 'source ~/.vim/session/Session.vim'
end
endfunction
autocmd VimEnter * call RestoreSession()
colorsheme 可以工作,但字体间距太大。每个句子的长度都是原来的两倍。我安装了字体Inconsolata
,并且在我的 Windows 7 机器上也有相同的配置,它运行良好。
答案1
您使用的设置格式错误'guifont'
。该格式FontName:h10
适用于 Windows,但不适用于 *nix。相反,请使用:set gfn=*
打开字体对话框来选择字体和大小。然后,您可以检查当前操作系统的正确格式。或者您可以阅读:help 'gfn'
。