加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Vim vundle colorschemes – vimrc

发布时间:2020-12-15 18:52:40 所属栏目:安全 来源:网络整理
导读:嗨,我一直在ubuntu上配置 vim. 所有的包似乎安装正常.但是,如果通过vundle安装colorscheme,然后使用colorscheme名称,似乎没有找到该方案. 我试图安装轨道车辆,日晒和沙漠温暖,但都无法加载. 这是我的.vimrc我做错了什么? set nocompatible " be iMprovedfil
嗨,我一直在ubuntu上配置 vim.

所有的包似乎安装正常.但是,如果通过vundle安装colorscheme,然后使用colorscheme名称,似乎没有找到该方案.

我试图安装轨道车辆,日晒和沙漠温暖,但都无法加载.

这是我的.vimrc我做错了什么?

set nocompatible               " be iMproved
filetype off                   " required!

colorscheme desert-warm 

" next tab
map <F7> :tabn    
" previous tab
map <F8> :tabp
" Close Tab abd save
map <F9> ZZ
" open and edit file
map <F6> :tabedit

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'

" My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup',{'rtp': 'vim/'}
Bundle 'tpope/vim-rails.git'
Bundle 'desert-warm-256'
" vim-scripts repos

Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
Bundle 'https://github.com/vim-scripts/perl-support.vim.git'
Bundle 'https://github.com/Raimondi/delimitMate.git'
Bundle 'https://github.com/altercation/vim-colors-solarized.git'
Bundle 'https://github.com/jpo/vim-railscasts-theme.git'
" ...

filetype plugin indent on     " required!
"
" Brief help
" :BundleList          - list configured bundles
" :BundleInstall(!)    - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!)      - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..
尝试将colorscheme调用移动到文件的末尾.

此外,您的示例中的配色方案名称对我来说不起作用 – 它应该是colorscheme desert-warm-256.要查看当前安装的配色列表,请尝试输入:colorscheme< TAB>交互.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读