Switch to using native vim packages

Use native vim packages instead of the earlier plugin mechanism.
This commit is contained in:
Andrew Mulbrook 2021-02-12 18:45:39 -06:00
parent 0023dc49a9
commit 24051d7737
6 changed files with 15 additions and 14 deletions

9
.gitmodules vendored
View file

@ -1,3 +1,12 @@
[submodule "dotbot"] [submodule "dotbot"]
path = dotbot path = dotbot
url = https://github.com/anishathalye/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

View file

@ -6,8 +6,6 @@
- create: - create:
- ~/projects - ~/projects
- ~/.vim/autoload
- ~/.vim/plugged
- ~/.config/kitty - ~/.config/kitty
- ~/.local/share/fonts - ~/.local/share/fonts
- ~/.fonts - ~/.fonts
@ -16,7 +14,7 @@
~/.bashrc: bashrc ~/.bashrc: bashrc
~/.profile: profile ~/.profile: profile
~/.vimrc: vimrc ~/.vimrc: vimrc
~/.vim/autoload/plug.vim: resources/vim/plug.vim ~/.vim: vim
~/.config/kitty/kitty.conf: kitty.conf ~/.config/kitty/kitty.conf: kitty.conf
~/.scripts: scripts ~/.scripts: scripts
~/.fonts/: ~/.fonts/:
@ -26,4 +24,5 @@
- shell: - shell:
- [git submodule update --init --recursive, Installing submodules] - [git submodule update --init --recursive, Installing submodules]
- [fc-cache -f -v, Updating fonts] - [fc-cache -f -v, Updating fonts]

@ -0,0 +1 @@
Subproject commit 8e013f32f524157bf14ccaa87d97be3d3a7201e2

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

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

10
vimrc
View file

@ -3,7 +3,6 @@
set nocompatible set nocompatible
" ----- Color Table ----- " ----- Color Table -----
" XTerm Configured Color Table!
hi x016_Grey0 ctermfg=16 guifg=#000000 "rgb=0,0,0 hi x016_Grey0 ctermfg=16 guifg=#000000 "rgb=0,0,0
hi x017_NavyBlue ctermfg=17 guifg=#00005f "rgb=0,0,95 hi x017_NavyBlue ctermfg=17 guifg=#00005f "rgb=0,0,95
hi x018_DarkBlue ctermfg=18 guifg=#000087 "rgb=0,0,135 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 " ----- Visual Behaviors