Add basic vim configuration
This commit is contained in:
parent
2ed3919a63
commit
86840a5123
5 changed files with 29 additions and 0 deletions
9
.gitmodules
vendored
Normal file
9
.gitmodules
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[submodule ".vim/bundle/vim-pathogen"]
|
||||||
|
path = .vim/bundle/vim-pathogen
|
||||||
|
url = https://github.com/tpope/vim-pathogen.git
|
||||||
|
[submodule ".vim/bundle/vim-gitgutter"]
|
||||||
|
path = .vim/bundle/vim-gitgutter
|
||||||
|
url = https://github.com/airblade/vim-gitgutter.git
|
||||||
|
[submodule ".vim/bundle/ale"]
|
||||||
|
path = .vim/bundle/ale
|
||||||
|
url = https://github.com/w0rp/ale.git
|
1
.vim/bundle/ale
Submodule
1
.vim/bundle/ale
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 2cfa09e02d65cd06649fb1ae5f988b7a110a124d
|
1
.vim/bundle/vim-gitgutter
Submodule
1
.vim/bundle/vim-gitgutter
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 1d422b9f98194e38bc56e54192c9bc66d95c21f1
|
1
.vim/bundle/vim-pathogen
Submodule
1
.vim/bundle/vim-pathogen
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit e9fb0914dba5bdfe2feaa364dda2e9495c5620a2
|
17
.vimrc
Normal file
17
.vimrc
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
||||||
|
execute pathogen#infect()
|
||||||
|
filetype on
|
||||||
|
syntax on
|
||||||
|
set colorcolumn=90
|
||||||
|
set number
|
||||||
|
set hidden
|
||||||
|
set history=100
|
||||||
|
filetype indent on
|
||||||
|
set nowrap
|
||||||
|
set tabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
|
set expandtab
|
||||||
|
set smartindent
|
||||||
|
set autoindent
|
||||||
|
set hlsearch
|
||||||
|
set showmatch
|
Loading…
Add table
Reference in a new issue