Add configurations including tabs, autocompletion and some helpers and styling

This commit is contained in:
caskd 2019-12-08 12:49:54 +01:00
commit c3ce27a6c0
No known key found for this signature in database
GPG Key ID: 79DB21404E300A27
5 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.netrwhist

6
.gitmodules vendored Normal file
View File

@ -0,0 +1,6 @@
[submodule "pack/ide-alike/start/clang_complete"]
path = pack/ide-alike/start/clang_complete
url = https://github.com/xavierd/clang_complete
[submodule "pack/airline/start/vim-airline"]
path = pack/airline/start/vim-airline
url = https://github.com/vim-airline/vim-airline

@ -0,0 +1 @@
Subproject commit 2daef1bcb8b240c303ef34c3348ee1af071963b4

@ -0,0 +1 @@
Subproject commit 0b98d7533ad967aac3fc4c1a5b0508dafa8a676f

9
vimrc Normal file
View File

@ -0,0 +1,9 @@
set nocompatible backspace=indent,eol,start cmdheight=4 background=dark ruler relativenumber showcmd incsearch listchars=tab:\|\ list
filetype plugin on
filetype indent on
syntax on
colorscheme koehler
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1
let g:clang_c_options = '-std=gnu11'