0

Vim 新手在这里...我一直在使用 Mac 在工作中学习 vim。

我将我的 .vimrc 添加到我的 github 存储库中,并希望 Vundle 下载所有内容并让 vim 在我的家用 Mint 13 笔记本电脑上同样工作。

我已将 ~/.vim/.vimrc 链接到 ~/.vimrc。我按照这些说明构建 vim 7.4 并拥有一个工作 vim。

我知道 .vimrc 文件的某些部分已被读取,b/c 我重新映射的 esc 序列正在工作。

似乎没有其他任何工作,甚至行号。

vim --版本

vim --版本

VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Feb 25 2015 20:30:46)
Included patches: 1-640

vimrc

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins


" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'

" Keep Plugin commands between vundle#begin/end.
Bundle 'nanotech/jellybeans.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'flazz/vim-colorschemes'
Bundle 'fs111/pydoc.vim'
Bundle 'hdima/python-syntax'
Bundle 'scrooloose/nerdtree'
Bundle 'tmhedberg/SimpylFold'
Bundle 'scrooloose/syntastic'
Bundle 'kien/rainbow_parentheses.vim'
call vundle#end()            " required

filetype plugin indent on    " required
syntax enable
set foldmethod=indent
set foldlevel=99
setlocal foldmethod=indent

set background=dark
set tabstop=4
set expandtab
set shiftwidth=4
set shiftround
set number
let mapleader=","
set hlsearch
set mouse=a
set nojoinspaces
set smarttab

nnoremap <leader>n :NERDTree<CR>
imap fj <Esc> 
colorscheme jellybeans 
" rainbow parens
au VimEnter * RainbowParenthesesToggle
au Syntax * RainbowParenthesesLoadRound
au Syntax * RainbowParenthesesLoadSquare
au Syntax * RainbowParenthesesLoadBraces
4

1 回答 1

0

看来,我又一次被 XFCE 咬了。

这个链接给了我我需要的提示,将我的终端 colos 设置为:

set t_Co=256

现在,更多功能按我的预期工作,只是配色方案 jellybeans 不再那么棒了。

Rainbowparens 不工作。

编辑:使用更多颜色可以让彩虹括号起作用......

set t_Co=512
于 2015-02-28T05:59:37.057 回答