Skip to content

keitht226/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

135 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

Initial setup

mkdir ~/dotfiles && cd dotfiles
git clone --recursive https://github.com/keitht226/dotfiles.git .
bash install.sh
  • bash install.sh -f will overwrite existing dotfiles. Save them before running this command or they will be destroyed. (run without -f to see which files would potentially be destroyed)

Update Plugins

# inside vim
:call minpac#update()

Update everything

git pull origin master 

Add new plugin submodule

cd ~/.vim/bundle
git submodule add \<path>
git add .

Remove plugin submodule

git submodule deinit vim/bundle/<submodule>
git rm vim/bundle/<submodule>
rm -rf .git/modules/vim/bundle/<submodule>
git commit -a -m "removed submodule"
git push

General Notes

Colors

  • looks best if terminal background color is changed appropriately
  • Gruvbox background color (hard contrast): #1d2021 rgb(29,32,33) ctermbg=234
  • Gruvbox foreground color: #ebdbb2 rgb(235,219,178) ctermbg=223
  • Gruvbox color palette top row: #1d2021, #cc241d, #98971a, #d79921, #458588, #b16286, #689d6a, #a89984
  • Gruvbox color palette bot row: #928374, #fb4934, #b8bb26, #fabd2f, #83a598, #d3869b, #8ec07c, #ebdbb2
  • VSCode Colors: VSCode Color Palette
  • Useful sites

minpac

  • Requires vim 8.0 and above
minpac#update()
minpac#add('path/to/git/.git')
minpac#clean() " erases plugins without minpac#add

Fonts

  • Fonts seem to vary in appearance and name depending on where gvim is being launched from. See notes in vimrc on how to adjust fonts to you liking

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors