Add second vimwiki
This commit is contained in:
parent
a021ff7471
commit
ee772d95e2
3 changed files with 5 additions and 4 deletions
|
@ -31,6 +31,7 @@ if [ -d "$HOME/.pyenv" ]
|
|||
then
|
||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
export PYENV_ROOT="$HOME/.pyenv"
|
||||
fi
|
||||
|
||||
if [ -x "$(command -v gcloud)" ] && [ -f "$HOME/.install/google-cloud-sdk" ]
|
||||
|
|
|
@ -9,7 +9,7 @@ function install_docker() {
|
|||
echo "Docker is already installed; skipping..."
|
||||
return
|
||||
fi
|
||||
|
||||
|
||||
# install the prereqs
|
||||
sudo apt install apt-transport-https ca-certificates curl software-properties-common
|
||||
|
||||
|
@ -30,7 +30,7 @@ function install_docker_compose() {
|
|||
echo "Docker Compose is already installed; skipping..."
|
||||
return
|
||||
fi
|
||||
|
||||
|
||||
# this makes me uncomfortable
|
||||
sudo curl -L "https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
||||
sudo chmod +x /usr/local/bin/docker-compose
|
||||
|
@ -41,7 +41,7 @@ function install_yarn() {
|
|||
echo "yarn is already installed; skipping..."
|
||||
return
|
||||
fi
|
||||
|
||||
|
||||
# add the key
|
||||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
||||
# add the repo and update apt
|
||||
|
|
|
@ -34,7 +34,7 @@ set smarttab
|
|||
set autoindent
|
||||
set smartindent
|
||||
|
||||
let g:vimwiki_list = [ {'path': '~/Code/ntietz/vimwiki'} ]
|
||||
let g:vimwiki_list = [ {'path': '~/Code/ntietz/vimwiki'}, {'path': '~/Code/ntietz/vimwiki-remesh'} ]
|
||||
|
||||
set spell
|
||||
|
||||
|
|
Loading…
Reference in a new issue