vimwiki: dth @ dth-ThinkPad-E560

This commit is contained in:
dth@taiga.ai 2022-07-05 18:58:07 +02:00
parent da3cf9daa6
commit 0139db66ec
4 changed files with 30 additions and 8 deletions

View file

@ -67,26 +67,34 @@ let g:sync_taskwarrior = 0
let g:vimwiki_markdown_link_ext = 1 " explicitly add .md extension in vimwiki let g:vimwiki_markdown_link_ext = 1 " explicitly add .md extension in vimwiki
let wiki_1 = {} let wiki_1 = {}
let wiki_1.name = 'vimwiki_private'
let wiki_1.path = '~/.local/share/nvim/vimwiki/' let wiki_1.path = '~/.local/share/nvim/vimwiki/'
let wiki_1.syntax = 'markdown' let wiki_1.syntax = 'markdown'
let wiki_1.ext = 'md' let wiki_1.ext = 'md'
let wiki_1.automatic_nested_syntaxes = 1
let wiki_2 = {} let wiki_2 = {}
let wiki_2.name = 'methodology_public'
let wiki_2.path = '~/methodology/' let wiki_2.path = '~/methodology/'
let wiki_2.syntax = 'markdown' let wiki_2.syntax = 'markdown'
let wiki_2.ext = 'md' let wiki_2.ext = 'md'
let wiki_2.automatic_nested_syntaxes = 1
let wiki_3 = {} let wiki_3 = {}
let wiki_3.name = 'taiga_admin_private'
let wiki_3.path = '~/administration/' let wiki_3.path = '~/administration/'
let wiki_3.syntax = 'markdown' let wiki_3.syntax = 'markdown'
let wiki_3.ext = 'md' let wiki_3.ext = 'md'
let wiki_3.automatic_nested_syntaxes = 1
let wiki_3 = {} let wiki_4 = {}
let wiki_3.path = '~/dotfiles/' let wiki_4.name = 'dotfiles_public'
let wiki_3.syntax = 'markdown' let wiki_4.path = '~/dotfiles/'
let wiki_3.ext = 'md' let wiki_4.syntax = 'markdown'
let wiki_4.ext = 'md'
let wiki_4.automatic_nested_syntaxes = 1
let g:vimwiki_list = [wiki_1, wiki_2, wiki_3] let g:vimwiki_list = [wiki_1, wiki_2, wiki_3, wiki_4]
" Calendar setup " Calendar setup
let g:calendar_first_day = 'monday' " set monday as first day of week let g:calendar_first_day = 'monday' " set monday as first day of week

View file

@ -1,6 +1,7 @@
# dotfiles # dotfiles
This repo is an extension of [dannydannydanny/methodology](https://github.com/DannyDannyDanny/methodology/) This repo is an extension of [dannydannydanny/methodology](https://github.com/DannyDannyDanny/methodology/)
The central part of this repo is [ubuntu](ubuntu.md)
## Roadmap: ## Roadmap:
@ -17,5 +18,8 @@ This repo is an extension of [dannydannydanny/methodology](https://github.com/Da
* [ ] make-rule for setting up `$HOME/.venvs/nvim/bin/python` * [ ] make-rule for setting up `$HOME/.venvs/nvim/bin/python`
* [ ] make-rules for getting nvim checkhealth up to speed * [ ] make-rules for getting nvim checkhealth up to speed
* [ ] music config: * [ ] music config:
* mpd, mpc, ncmpcpp ([Mac guide](https://killtheyak.com/install-mpd-mpc-ncmpcpp/), [config guide for mac](https://computingforgeeks.com/install-configure-mpd-ncmpcpp-macos/)) * mpd, mpc, ncmpcpp
* [Mac guide](https://killtheyak.com/install-mpd-mpc-ncmpcpp/)
* [config guide for mac](https://computingforgeeks.com/install-configure-mpd-ncmpcpp-macos/)
* test on new machine with music dir * test on new machine with music dir

1
index.md Normal file
View file

@ -0,0 +1 @@
* [README.md](README.md.md)

View file

@ -1,7 +1,5 @@
## Document Roadmap ## Document Roadmap
* ubunutu script should install all programs in one go (and not ask go Y every time)
* add necessary packages:
* oh-my-zsh install * oh-my-zsh install
* ssh setup from vimwiki * ssh setup from vimwiki
* git clone dotfiles * git clone dotfiles
@ -86,6 +84,17 @@ Copy the public key to machines which you want to access with this machine.
Inversely, if you want other machines to ssh to this machine, Inversely, if you want other machines to ssh to this machine,
copy their public keys to this machine. copy their public keys to this machine.
#### ssh resources
* [Digital Ocean ssh essentials](https://www.digitalocean.com/community/tutorials/ssh-essentials-working-with-ssh-servers-clients-and-keys)
#### server-side setup checklist
* setup locales (LC_LANGUAGE, LC_ALL)
* install openssh-server
* enable ssh service on startup
* copy workstation public key to server
* ssh via key (i.e no password)
* disable password authentication
## Snap packages ## Snap packages
``` ```