美文网首页
预备 zsh vim 插件安装

预备 zsh vim 插件安装

作者: 昵称己存在 | 来源:发表于2019-10-16 20:23 被阅读0次

    oh-my-zsh

    sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    

    Prepare

    Install

    mv .vimrc .vimrc.backup
    or
    rm .vimrc
    rm -rf .vim
    git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
    

    copy this to your .vimrc

    hi ColorColumn ctermbg=8   
    
    set nocompatible
    filetype off
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    Plugin 'VundleVim/Vundle.vim'
    Plugin 'bling/vim-airline' 
    Plugin 'klen/python-mode'
    call vundle#end()
    filetype plugin indent on
    

    相关文章

      网友评论

          本文标题:预备 zsh vim 插件安装

          本文链接:https://www.haomeiwen.com/subject/bedoectx.html