20 lines
667 B
Bash
Executable file
20 lines
667 B
Bash
Executable file
#!/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: >
|