My personal Vim configuration.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- set nocompatible
- filetype off
-
- filetype plugin indent on
-
- set nu
- set hls
- set si
-
- " Indentation
- set expandtab
- set shiftwidth=4
- set softtabstop=4
-
- " Vundle
- set rtp+=~/.vim/bundle/Vundle.vim
- call vundle#begin()
-
- Plugin 'VundleVim/Vundle.vim'
- Plugin 'git://github.com/mogelbrod/vim-jsonpath'
-
- call vundle#end()
|