Reworked visual appearance and bindings

+ added more convenient bindings
* visually improved interface
+ started working on implementing editorconfig
This commit is contained in:
Steins7 2022-01-06 14:13:35 +01:00
parent df4e455fb6
commit 3763771791
6 changed files with 13 additions and 12 deletions

12
.gitmodules vendored
View File

@ -22,9 +22,9 @@
[submodule "bundle/vim-sensible"] [submodule "bundle/vim-sensible"]
path = bundle/vim-sensible path = bundle/vim-sensible
url = https://github.com/tpope/vim-sensible url = https://github.com/tpope/vim-sensible
[submodule "bundle/vim-airline"] [submodule "bundle/lightline.vim"]
path = bundle/vim-airline path = bundle/lightline.vim
url = https://github.com/vim-airline/vim-airline url = https://github.com/itchyny/lightline.vim.git
[submodule "bundle/vim-airline-themes"] [submodule "bundle/editorconfig-vim"]
path = bundle/vim-airline-themes path = bundle/editorconfig-vim
url = https://github.com/vim-airline/vim-airline-themes.git url = https://github.com/editorconfig/editorconfig-vim.git

@ -0,0 +1 @@
Subproject commit 3078cd10b28904e57d878c0d0dab42aa0a9fdc89

1
bundle/lightline.vim Submodule

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

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

@ -1 +0,0 @@
Subproject commit 97cf3e6e638f936187d5f6e9b5eb1bdf0a4df256

9
vimrc
View File

@ -6,6 +6,9 @@ execute pathogen#infect()
let g:spacegray_use_italics=1 let g:spacegray_use_italics=1
colorscheme spacegray colorscheme spacegray
let g:airline_theme='distinguished' let g:airline_theme='distinguished'
let g:lightline = {
\ 'colorscheme': 'Tomorrow_Night',
\}
" custom settings " custom settings
set number set number
@ -47,8 +50,6 @@ let g:header_field_author_email='steinsset@gmail.com'
let g:header_field_license_id='GNU' let g:header_field_license_id='GNU'
nmap <silent> <F4> :AddHeader<CR> nmap <silent> <F4> :AddHeader<CR>
" allow project-specific configs set autochdir
if filereadable("./.project.vim") let g:EditorConfig_verbose=1
source ./.project.vim
endif