如何通过SSH在Vim中启用颜色?


9

我有两个远程服务器:

服务器1:Linux 2.6.18-238.12.1.el5PAE i686 / VIM-Vi IMproved-版本7.0.237
服务器2:Linux 2.6.18-338.19.1.el5.lve0.8.36 x86_64 / VIM-Vi IMproved 7.0版。 237

当我SSH进入Server 2并使用vim编辑php.htaccess文件时,它具有漂亮的色彩突出显示。以下是该/etc/vimrc服务器上的文件。

将ssh放入Server 1时,没有显示颜色。我尝试将下面的代码复制到服务器1上的〜/ .vimrc文件中,但是颜色语法不起作用。其他功能(如set nocompatible)正在工作,但颜色无效。

为什么服务器1上的颜色不起作用,如何测试和修复它?tput colors在两个终端返回8。我尝试过:syntax on:syntax enable但这也无济于事。

------------------------------------------------------------

/etc/vimrc文件内容:

if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"
   set fileencodings=utf-8,latin1
endif

set nocompatible    " Use Vim defaults (much better!)
set bs=indent,eol,start     " allow backspacing over everything in insert mode
"set ai         " always set autoindenting on
"set backup     " keep a backup file
set viminfo='20,\"50    " read/write a .viminfo file, don't store more
            " than 50 lines of registers
set history=50      " keep 50 lines of command line history
set ruler       " show the cursor position all the time

" Only do this part when compiled with support for autocommands
if has("autocmd")
  augroup redhat
    " In text files, always limit the width of text to 78 characters
    autocmd BufRead *.txt set tw=78
    " When editing a file, always jump to the last cursor position
    autocmd BufReadPost *
    \ if line("'\"") > 0 && line ("'\"") <= line("$") |
    \   exe "normal! g'\"" |
    \ endif
  augroup END
endif

if has("cscope") && filereadable("/usr/bin/cscope")
   set csprg=/usr/bin/cscope
   set csto=0
   set cst
   set nocsverb
   " add any database in current directory
   if filereadable("cscope.out")
      cs add cscope.out
   " else add database pointed to by environment
   elseif $CSCOPE_DB != ""
      cs add $CSCOPE_DB
   endif
   set csverb
endif

" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif

if &term=="xterm"
     set t_Co=8
     set t_Sb=%dm
     set t_Sf=%dm
endif

:version输出

VIM - Vi IMproved 7.0 (2006 May 7, compiled Aug  4 2010 07:21:18)
Included patches: 1, 3-4, 7-9, 11, 13-17, 19-26, 29-31, 34-44, 47, 50-56, 58-64, 66-73, 75, 77-92, 94-107, 109, 202, 234-237
Compiled by <bugzilla@redhat.com>
Tiny version without GUI.  Features included (+) or not (-):
-arabic -autocmd -balloon_eval -browse +builtin_terms -byte_offset -cindent -clientserver -clipboard -cmdline_compl -cmdline_hist -cmdline_info -comments -cryptv -cscope -cursorshape -dialog -diff -digraphs -dnd -ebcdic -emacs_tags -eval -ex_extra -extra_search -farsi
-file_in_path -find_in_path -folding -footer +fork() -gettext -hangul_input +iconv -insert_expand -jumplist -keymap -langmap -libcall -linebreak -lispindent -listcmds -localmap -menu -mksession -modify_fname -mouse -mouse_dec -mouse_gpm -mouse_jsbterm -mouse_netterm
-mouse_xterm +multi_byte -multi_lang -mzscheme -netbeans_intg -osfiletype -path_extra -perl -printer -profile -python -quickfix -reltime -rightleft -ruby -scrollbind -signs -smartindent -sniff -statusline -sun_workshop -syntax -tag_binary -tag_old_static -tag_any_white
 -tcl +terminfo -termresponse -textobjects -title -toolbar -user_commands -vertsplit -virtualedit -visual -viminfo -vreplace +wildignore -wildmenu -windows +writebackup -X11 -xfontset -xim -xsmp -xterm_clipboard -xterm_save
   system vimrc file: "/etc/virc"
     user vimrc file: "$HOME/.vimrc"
      user exrc file: "$HOME/.exrc"
  fall-back for $VIM: "/usr/share/vim"
Compilation:
gcc -c -I. -Iproto -DHAVE_CONFIG_H     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2
Linking: gcc   -L/usr/local/lib -o vim       -lselinux -ltermcap -lacl

1
打开您的PHP文件,输入:set term:set filetype然后将结果提供给我们。
广达

term = xterm,E519:不支持选项:文件类型
cwd

Answers:


12

我怀疑你有一个alias vim=vi~/.bashrc。尝试运行“真实”命令,而不是别名:

\vim /path/to/php/file

看起来您正在运行CentOS。确保已安装vim-enhanced软件包:

rpm -qa | grep vim
vim-minimal-7.0.109-4.el5_2.4z
vim-enhanced-7.0.109-7.el5
vim-common-7.0.109-7.el5

我将安装增强版,看看是否有所作为。感谢您关注这一点。
cwd

4

您可以从您的vim版本输出中得知它是vim-tiny,并且未使用该-syntax选项进行编译。

同时放入export TERM=xterm-256color您的bashrc以获得全部好处...


4

您也可以使用sshfs挂载资源,以便使用本地vim编辑这些文件。

Vim也可以编辑远程文件。这样做的好处是,您可以在自己自定义和熟悉的vim配置中轻松进行编辑。

vi scp://username@example.com/path/to/file


0

在特定情况下,如果客户终端未设置颜色TERM而是设置了COLORTERM。做这个:

在客户端计算机上,添加SendEnv COLORTERM到中/etc/ssh/ssh_config,在服务器上,添加AcceptEnv COLORTERM到中/etc/ssh/sshd_config

重新加载sshd(service sshd reload)并重新连接。

如果您的服务器是CentOS / RHEL,并且/etc/profile/256term.sh(由软件包提供initscripts)是我的默认设置,则该服务器应自动设置TERMxterm-256color,在bash中启用颜色(ls ...),在vim中启用颜色。

正如Quanta指出的,如果您只有vi,请安装vim-enhanced。

如果您的客户终端已经设置了颜色TERM,我不确定是否需要这样做。我必须这样做以解决具有硬编码TERM = xterm的Terminator。ubuntu上的gnome-terminal确实具有默认的TERM xterm-256color,因此无需ssh中的Send / AcceptEnv即可使用颜色。


0

我认为您实际上在使用SSH的控制台上可能拥有vi而不是增强了vim。我必须在vi上安装vim或使用vim作为别名,它对我来说正常工作。您的注释中的“ E519:不支持的选项:文件类型”提供了此信息。

我在这里找到了有用的信息。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.