Giter Site home page Giter Site logo

dotfiles's Introduction

Vundle stands for Vim Bundle and is one of the package managers for Vim. It is installed using git, and expects packages to be added to your .vimrc file.

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

Vimrc

The .vimrc file in the home directory needs to reflect the use of Vundle for plugin management. The following is what a basic empty vim configuration that uses Vundle for plugin management looks like. You might want to enable paste mode when copying it into your .vimrc, this is done with the :set paste command.

cd ~
vim ~/.vimrc
    set encoding=utf8

    """" START Vundle Configuration

    " Disable file type for vundle
    filetype off                  " required

    " set the runtime path to include Vundle and initialize
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()

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

    " ... (declaration of your plugins)

    call vundle#end()            " required
    filetype plugin indent on    " required
    """" END Vundle Configuration

Install plugins

Then, when you have defined the plugins you want to install, open vim and execute :PluginInstall. Vundle will automatically pull them in and install them into the correct directory. Remember the installation only concerns the current user.

vim
    :PluginInstall
    :h vundle

dotfiles's People

Contributors

inatic avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.