gitconfig raise post buffer

This commit is contained in:
Oliver Ladner 2022-02-10 07:44:50 +01:00
commit ebbbe5a7b9
6 changed files with 27 additions and 3 deletions

20
.vim/add_pkg.sh Executable file
View file

@ -0,0 +1,20 @@
#!/usr/bin/env bash
# Ensure we are in the .vim subdirectory of the dotfiles repository
if [ $(basename $PWD) == '.vim' && ]; then
echo "we are in vim"
else
echo "not in .vim"
fi
#Since color schemes, loaded with `:colorscheme`, are found below
#"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
#you put them below "pack/*/opt", for example
#".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
#
#Filetype plugins should go under "pack/*/start", so that they are always
#found. Unless you have more than one plugin for a file type and want to
#select which one to load with `:packadd`. E.g. depending on the compiler
#version: >