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
|
then
|
||||||
export PATH="$HOME/.pyenv/bin:$PATH"
|
export PATH="$HOME/.pyenv/bin:$PATH"
|
||||||
eval "$(pyenv init -)"
|
eval "$(pyenv init -)"
|
||||||
|
export PYENV_ROOT="$HOME/.pyenv"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -x "$(command -v gcloud)" ] && [ -f "$HOME/.install/google-cloud-sdk" ]
|
if [ -x "$(command -v gcloud)" ] && [ -f "$HOME/.install/google-cloud-sdk" ]
|
||||||
|
|
|
@ -9,7 +9,7 @@ function install_docker() {
|
||||||
echo "Docker is already installed; skipping..."
|
echo "Docker is already installed; skipping..."
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# install the prereqs
|
# install the prereqs
|
||||||
sudo apt install apt-transport-https ca-certificates curl software-properties-common
|
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..."
|
echo "Docker Compose is already installed; skipping..."
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# this makes me uncomfortable
|
# 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 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
|
sudo chmod +x /usr/local/bin/docker-compose
|
||||||
|
@ -41,7 +41,7 @@ function install_yarn() {
|
||||||
echo "yarn is already installed; skipping..."
|
echo "yarn is already installed; skipping..."
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# add the key
|
# add the key
|
||||||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
||||||
# add the repo and update apt
|
# add the repo and update apt
|
||||||
|
|
|
@ -34,7 +34,7 @@ set smarttab
|
||||||
set autoindent
|
set autoindent
|
||||||
set smartindent
|
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
|
set spell
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue