-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
47 lines (39 loc) · 1.14 KB
/
.vimrc
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
39
40
41
42
43
44
45
46
47
""""""""""""""""""""""""""""""
" Vundle Required Configs
"
""""""""""""""""""""""""""""""
set nocompatible
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Keep Plugin commands between vundle#begin/end.
Plugin 'itchyny/lightline.vim'
let g:lightline = { 'colorscheme': 'seoul256',
\ 'active': { 'left': [ [ 'mode', 'paste' ], [ 'readonly', 'absolutepath', 'modified' ] ] }
\ }
" All of your Plugins must be added before the following line
call vundle#end()
filetype plugin indent on
" To ignore plugin indent changes, instead use:
"filetype plugin on
""""""""""""""""""""""""""""""
" My Settings
"
""""""""""""""""""""""""""""""
set number
set tabstop=4
set shiftwidth=4
set expandtab
set ignorecase
" Allow backspace
set backspace=indent,eol,start
" Do not automatically add eol at the end (windows)
set nofixeol
" status line
set wildmode=list:longest
set laststatus=2 " always show status line