My personal Vim configuration.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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()
|