wslg updates

This commit is contained in:
Matthew Ryan Dillon 2022-02-13 11:07:53 -07:00
parent 716df683af
commit f4a3b65189
6 changed files with 99 additions and 73 deletions

View file

@ -1,5 +1,29 @@
# dotfiles # dotfiles
## wslg ubuntu
```bash
sudo apt update
sudo apt upgrade
sudo apt install nvim tmux ripgrep zsh tree git build-essential libssl-dev pkg-config
sudo hostname $HOSTNAME
chsh -s $(which zsh)
sudo echo "[interop]\nappendWindowsPath = false" > /etc/wsl.conf
git clone --origin pingo ssh://git@pingo.thermokar.st/dotfiles ~/.dotfiles
git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
cd ~/.dotfiles
./install
source ~/.zshrc
base16_ashes
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
git clone ssh://git@pingo.thermokar.st/gwar ~/gwar
cd ~/gwar
cargo --build --release
./target/release/gwar ~/.dotfiles/$REPOS.toml
cd ~/ && rm -rf ~/gwar
```
## opensuse tumbleweed ## opensuse tumbleweed
```bash ```bash

View file

@ -15,7 +15,6 @@
path: git/gitignore_global path: git/gitignore_global
~/.npmrc: npmrc ~/.npmrc: npmrc
~/.psqlrc: psqlrc ~/.psqlrc: psqlrc
~/.vimrc: vimrc
~/.zpreztorc: zsh/zpreztorc ~/.zpreztorc: zsh/zpreztorc
~/.zlogin: zsh/zlogin ~/.zlogin: zsh/zlogin
~/.zlogout: zsh/zlogout ~/.zlogout: zsh/zlogout
@ -31,12 +30,6 @@
~/Library/Application Support/Code/User/tasks.json: ~/Library/Application Support/Code/User/tasks.json:
create: true create: true
path: vscode/tasks.json path: vscode/tasks.json
~/.config/kak/kakrc:
create: true
path: kakrc
~/.config/nvim/init.vim:
create: true
path: nvim/init.vim
~/.config/nvim/init.vim: ~/.config/nvim/init.vim:
create: true create: true
path: nvim/init.vim path: nvim/init.vim

View file

@ -134,6 +134,12 @@ return require('packer').startup(function()
end, end,
} }
-----------------------------------------------------------------------------
use { 'SuneelFreimuth/vim-gemtext' }
-----------------------------------------------------------------------------
use { 'junegunn/goyo.vim' }
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
if packer_bootstrap then if packer_bootstrap then
require('packer').sync() require('packer').sync()

65
personal.toml Normal file
View file

@ -0,0 +1,65 @@
# personal
[[workspace]]
path = "$HOME/projects/personal"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@pingo.thermokar.st"
origin.name = "pingo"
repos = [
"cs685",
"dot_ssh",
"dotfiles",
"elixir-class",
"gitolite-admin",
"gpx-web-utils",
"gwar",
"notes",
"pingo",
]
remotes = []
# personal-dokku
[[workspace]]
path = "$HOME/projects/personal"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@pingo.thermokar.st"
origin.name = "pingo"
repos = [
"akdillon",
"planner",
"thermokar.st",
"zettel",
]
remotes = [
{ name = "dokku", base_addr = "ssh://dokku@pingo.thermokar.st" },
]
# mds
[[workspace]]
path = "$HOME/projects/mds"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@pingo.thermokar.st"
origin.name = "pingo"
repos = [
"arctic_hibernators_schema",
"bactdb",
"bactdb_data",
"ccdb-api",
"ccdb-old",
"ccdb-web",
"drf_ember_pagination",
"hibernators",
"hibernators-web",
"hymenobacterdotinfo",
]
remotes = []
# github-thermokarst-personal
[[workspace]]
path = "$HOME/projects/personal"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@github.com/thermokarst"
origin.name = "thermokarst"
repos = [
"thermokarst",
]
remotes = []

View file

@ -1,69 +1,3 @@
# personal
[[workspace]]
path = "$HOME/projects/personal"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@pingo.thermokar.st"
origin.name = "pingo"
repos = [
"cs685",
"dot_ssh",
"dotfiles",
"elixir-class",
"gitolite-admin",
"gpx-web-utils",
"gwar",
"notes",
"pingo",
]
remotes = []
# personal-dokku
[[workspace]]
path = "$HOME/projects/personal"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@pingo.thermokar.st"
origin.name = "pingo"
repos = [
"akdillon",
"planner",
"thermokar.st",
"zettel",
]
remotes = [
{ name = "dokku", base_addr = "ssh://dokku@pingo.thermokar.st" },
]
# mds
[[workspace]]
path = "$HOME/projects/mds"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@pingo.thermokar.st"
origin.name = "pingo"
repos = [
"arctic_hibernators_schema",
"bactdb",
"bactdb_data",
"ccdb-api",
"ccdb-old",
"ccdb-web",
"drf_ember_pagination",
"hibernators",
"hibernators-web",
"hymenobacterdotinfo",
]
remotes = []
# github-thermokarst-personal
[[workspace]]
path = "$HOME/projects/personal"
ssh_key_path = "$HOME/.ssh/id_ecdsa"
origin.base_addr = "ssh://git@github.com/thermokarst"
origin.name = "thermokarst"
repos = [
"thermokarst",
]
remotes = []
# github-thermokarst-qiime2 # github-thermokarst-qiime2
[[workspace]] [[workspace]]
path = "$HOME/projects/qiime2" path = "$HOME/projects/qiime2"

View file

@ -64,3 +64,7 @@ function back_things_up() {
ln -s $dest_root/$date $dest_root/latest ln -s $dest_root/$date $dest_root/latest
# TODO: once confident pruning is working well, add that in here # TODO: once confident pruning is working well, add that in here
} }
function devlog() {
vim -c 'Goyo' '+normal Go' +startinsert ~/projects/personal/devlog/logs/$(date '+%Y-%m-%d').gmi
}