Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: workspace binutils #99

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/packages/nvim/config/lua/config/local_options.lua
/.tests/
/.lazy
dist/
.cargo/
5 changes: 4 additions & 1 deletion install.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,11 @@
}

function install_zsh_config {
# TODO: ideally change this to $PKG/zsh/dist
# this requires building binutils and running cache-shell-setup first
local ZSH="$PKG/zsh"

link_dotfile "$ZSH" "$HOME/.zsh"
link_dotfile "$ZSH/dist" "$HOME/.zsh"
copy_template_with_merge "$ZSH/template/zlogin" "$HOME/.zlogin"
copy_template_with_merge "$ZSH/template/zshenv" "$HOME/.zshenv"
copy_template_with_merge "$ZSH/template/zprofile" "$HOME/.zprofile"
Expand Down Expand Up @@ -164,6 +166,7 @@
link_dotfile "$PKG/ssh/rc" "$HOME/.ssh/rc"
link_dotfile "$PKG/starship/config/starship.toml" "$HOME/.config/starship.toml"
link_dotfile "$PKG/tmux/tmux.conf" "$HOME/.tmux.conf"
link_dotfile "$PKG/binutils/config" "$HOME/.config/binutils"

exit 0
)
38 changes: 0 additions & 38 deletions packages/binutils/build.sh

This file was deleted.

85 changes: 85 additions & 0 deletions packages/binutils/config/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
#:schema ../crates/config/config_schema.json


# TODO:mv to (or prioritize) local-config.toml
# TODO: use this instead of startup-home when it works

[[tmux.sessions]]
name = "📋 todos"

[[tmux.sessions.windows]]
name = "todos"
path = "~/docs/vadnu/home"
command = "nvim"

[[tmux.sessions.windows]]
name = "reference"
path = "~/docs/vadnu/home/ref"
command = "nvim"

[[tmux.sessions.windows]]
name = "journal"
path = "~/docs/vadnu/home/journal"
command = "nvim"


[[tmux.sessions]]
name = "dotfiles"

[[tmux.sessions.windows]]
name = "dotfiles"
path = "~/src/github/hjdivad/dotfiles"
command = "nvim"

[[tmux.sessions.windows]]
name = "binutils"
path = "~/src/github/hjdivad/dotfiles/packages/binutils/crates"
command = "nvim"

[[tmux.sessions.windows]]
name = "shared-binutils"
path = "~/src/github/malleatus/shared_binutils/"
command = "nvim"

[[tmux.sessions.windows]]
name = "rwjblue/dotfiles"
path = "~/src/github/rwjblue/dotfiles"
command = "nvim"

[[tmux.sessions.windows]]
name = "rwjblue/dotvim"
path = "~/src/github/rwjblue/dotvim"
command = "nvim"


[[tmux.sessions]]
name = "💪 ud_macros"

[[tmux.sessions.windows]]
name = "sandbox-kotlin"
path = "~/src/nas/hjdivad/sandbox-kotlin/"
command = "nvim"

[[tmux.sessions.windows]]
name = "sandbox-android"
path = "~/src/nas/hjdivad/sandbox-android/"
command = "nvim"

[[tmux.sessions.windows]]
name = "sandbox-android2"
path = "~/src/nas/hjdivad/sandbox-android/"
command = "nvim"


[[tmux.sessions]]
name = "🦾 montoya"

[[tmux.sessions.windows]]
name = "montoya"
path = "~/src/github/malleatus/montoya.nvim/"
command = "nvim"

[[tmux.sessions.windows]]
name = "montoya2"
path = "~/src/github/malleatus/montoya.nvim/"
command = "nvim"
Loading
Loading