Switch to using native vim packages
Use native vim packages instead of the earlier plugin mechanism.
This commit is contained in:
parent
0023dc49a9
commit
24051d7737
6 changed files with 15 additions and 14 deletions
9
.gitmodules
vendored
9
.gitmodules
vendored
|
|
@ -1,3 +1,12 @@
|
|||
[submodule "dotbot"]
|
||||
path = dotbot
|
||||
url = https://github.com/anishathalye/dotbot
|
||||
[submodule "vim/pack/def/start/lightline"]
|
||||
path = vim/pack/def/start/lightline
|
||||
url = https://github.com/itchyny/lightline.vim
|
||||
[submodule "vim/pack/def/start/vim-fugitive"]
|
||||
path = vim/pack/def/start/vim-fugitive
|
||||
url = https://github.com/tpope/vim-fugitive
|
||||
[submodule "vim/pack/def/start/vim-gitgutter"]
|
||||
path = vim/pack/def/start/vim-gitgutter
|
||||
url = https://github.com/airblade/vim-gitgutter
|
||||
|
|
|
|||
|
|
@ -6,8 +6,6 @@
|
|||
|
||||
- create:
|
||||
- ~/projects
|
||||
- ~/.vim/autoload
|
||||
- ~/.vim/plugged
|
||||
- ~/.config/kitty
|
||||
- ~/.local/share/fonts
|
||||
- ~/.fonts
|
||||
|
|
@ -16,7 +14,7 @@
|
|||
~/.bashrc: bashrc
|
||||
~/.profile: profile
|
||||
~/.vimrc: vimrc
|
||||
~/.vim/autoload/plug.vim: resources/vim/plug.vim
|
||||
~/.vim: vim
|
||||
~/.config/kitty/kitty.conf: kitty.conf
|
||||
~/.scripts: scripts
|
||||
~/.fonts/:
|
||||
|
|
@ -27,3 +25,4 @@
|
|||
- shell:
|
||||
- [git submodule update --init --recursive, Installing submodules]
|
||||
- [fc-cache -f -v, Updating fonts]
|
||||
|
||||
|
|
|
|||
1
vim/pack/def/start/lightline
Submodule
1
vim/pack/def/start/lightline
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 8e013f32f524157bf14ccaa87d97be3d3a7201e2
|
||||
1
vim/pack/def/start/vim-fugitive
Submodule
1
vim/pack/def/start/vim-fugitive
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit d4bcc75ef6449c0e5592513fb1e0a42b017db9ca
|
||||
1
vim/pack/def/start/vim-gitgutter
Submodule
1
vim/pack/def/start/vim-gitgutter
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 2e3cd54ed696500bb3722226f2103d4b279272c0
|
||||
10
vimrc
10
vimrc
|
|
@ -3,7 +3,6 @@
|
|||
set nocompatible
|
||||
|
||||
" ----- Color Table -----
|
||||
" XTerm Configured Color Table!
|
||||
hi x016_Grey0 ctermfg=16 guifg=#000000 "rgb=0,0,0
|
||||
hi x017_NavyBlue ctermfg=17 guifg=#00005f "rgb=0,0,95
|
||||
hi x018_DarkBlue ctermfg=18 guifg=#000087 "rgb=0,0,135
|
||||
|
|
@ -248,15 +247,6 @@ hi x255_Grey93 ctermfg=255 guifg=#eeeeee "rgb=238,238,238
|
|||
|
||||
|
||||
|
||||
" ----- Plugins ------
|
||||
" Configure Vim plugin manager
|
||||
call plug#begin('~/.vim/plugged')
|
||||
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
|
||||
call plug#end()
|
||||
|
||||
|
||||
" ----- Visual Behaviors
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue