forked from Fisch03/fischis-dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
38 lines (28 loc) · 599 Bytes
/
Copy path.vimrc
File metadata and controls
38 lines (28 loc) · 599 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
" Vundle Stuff
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Plugins
Plugin 'VundleVim/Vundle.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'morhetz/gruvbox'
" Vundle Stuff
call vundle#end()
filetype plugin indent on
" Tab Behaviour
set tabstop=4
set shiftwidth=4
set expandtab
" Line Numbers
set number
" Theme
colorscheme gruvbox
set bg=dark
" Disable Theme BG
hi Normal ctermbg=none
" Airline
let g:airline_powerline_fonts = 1
let g:airline_section_x = '%{&filetype}'
let g:airline_section_a = '%{mode(1)}'