bro can't stop committing

1. Added `tree-sitter-cli` as a Rust package/dependancy
2. Updated README accordingly
3. Changed the default vault paths in obsidian.lua to my actual paths.
(Imagine copy and pasting the default, what a loser)
This commit is contained in:
ForeverPyrite
2025-09-17 22:30:26 -04:00
parent 8ebbaf169d
commit f33e6a77a3
3 changed files with 17 additions and 17 deletions

View File

@@ -70,6 +70,7 @@ That being said, I have actually found these utilities to vastly improve upon th
- `atuin` - This is kinda like zoxide, but for your shell commands. Pressing the up arrow now shows your entire command history, and you can fuzzy find through them. I imagine it's more secure than .bash_history too. - `atuin` - This is kinda like zoxide, but for your shell commands. Pressing the up arrow now shows your entire command history, and you can fuzzy find through them. I imagine it's more secure than .bash_history too.
- `dua-cli` - Disk-usage-analyzer. Plain and simple. , so this'll do. Useful for my limited storage cloud VPS and stuff. - `dua-cli` - Disk-usage-analyzer. Plain and simple. , so this'll do. Useful for my limited storage cloud VPS and stuff.
- `starship` - Super customizable cross-shell prompt. Very informative, yet very brief (at least, by default). - `starship` - Super customizable cross-shell prompt. Very informative, yet very brief (at least, by default).
- `tree-sitter-cli` - Dependency for some neovim stuff
- `bob-nvim` - Neovim manager. Simple as that. - `bob-nvim` - Neovim manager. Simple as that.
- `alacritty` - GPU accelerated and extremely customizable terminal emulator - `alacritty` - GPU accelerated and extremely customizable terminal emulator
- `cargo-cache` - Actually just used for this script so far. It'll clean up all the, likely useless, sizable compiled dependencies used to build all of this. - `cargo-cache` - Actually just used for this script so far. It'll clean up all the, likely useless, sizable compiled dependencies used to build all of this.

View File

@@ -34,6 +34,7 @@ RUST_PACKAGES=(
zoxide # Drop in `cd` replacement, can use `fzf` to...well...fuzzy find, and it also just knows where to go zoxide # Drop in `cd` replacement, can use `fzf` to...well...fuzzy find, and it also just knows where to go
starship # Super customizable cross-shell prompt. Very informative, yet very brief (at least, by default). starship # Super customizable cross-shell prompt. Very informative, yet very brief (at least, by default).
bob-nvim # Probably something I'll drop since installing up-to-date neovim seems like an impossible task. I'll figure out something... bob-nvim # Probably something I'll drop since installing up-to-date neovim seems like an impossible task. I'll figure out something...
tree-sitter-cli # Dependancy for some neovim stuff.
atuin # This is kinda like zoxide, but for your shell commands. Pressing the up arrow now shows your entire command history, and you can fuzzy find through them. I imagine it's more secure than .bash_history too. atuin # This is kinda like zoxide, but for your shell commands. Pressing the up arrow now shows your entire command history, and you can fuzzy find through them. I imagine it's more secure than .bash_history too.
dua-cli # Disk-usage-analyzer. Plain and simple. For some reason I can't figure out how to find folder sizes (you probably can with `eza`), so this'll do. Useful for my limited storage cloud VPS and stuff. dua-cli # Disk-usage-analyzer. Plain and simple. For some reason I can't figure out how to find folder sizes (you probably can with `eza`), so this'll do. Useful for my limited storage cloud VPS and stuff.
cargo-cache # Actually just used for this script so far. It'll clean up all the, likely useless, sizable compiled dependancies used to build all of this. cargo-cache # Actually just used for this script so far. It'll clean up all the, likely useless, sizable compiled dependancies used to build all of this.

View File

@@ -20,12 +20,10 @@ return {
opts = { opts = {
workspaces = { workspaces = {
{ {
name = "personal", -- Yeah, everything is in one vault. So what?
path = "~/vaults/personal", -- I'm an idiot.
}, name = "vault",
{ path = "~/Obsidian/Vault/",
name = "work",
path = "~/vaults/work",
}, },
}, },