mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 13:30:26 +01:00
14 lines
327 B
Bash
Executable File
14 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
cd ~/divaultplan
|
|
git pull
|
|
cd ~/divaultphren
|
|
git pull
|
|
cd ~/divaultwiki
|
|
git pull
|
|
#vim -c ":vsp planning_2015.todo" notes_2015.md notes_2014.md
|
|
if ! command -v nvim >/dev/null 2>&1; then
|
|
vim -c "set nofoldenable" ~/divaultplan/planning_2026.md
|
|
else
|
|
nvim -c "set nofoldenable" ~/divaultplan/planning_2026.md
|
|
fi
|