My personal Vim configuration.
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- 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()
|