My personal Vim configuration.
Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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'
-
- " Add plugins here
-
- call vundle#end()
|