Compare commits

...

2 Commits

Author SHA1 Message Date
foreverpyrite
52fbaae9ef Moving gitignore to a more appropriate location
and testing things to figure out why there is desync despite github
saying we are balling
2025-09-08 16:03:10 -04:00
ForeverPyrite
cbd8c46e9c Added .profile. 2025-09-08 15:27:47 -04:00
6 changed files with 59 additions and 5 deletions

9
.gitignore vendored
View File

@@ -1,2 +1,9 @@
# For some reason, btop has it's log in the .config dir tt.*
.tests
doc/tags
debug
.repro
foo.*
*.log *.log
data
.aider*

View File

@@ -63,7 +63,7 @@ That being said, I have actually found these utilities to vastly improve upon th
- `bat` - Drop in `cat` replacement, more modern formatting, uhh "cat with wings" is what they said. I agree. - `bat` - Drop in `cat` replacement, more modern formatting, uhh "cat with wings" is what they said. I agree.
- `ripgrep` - Drop in `grep` replacement, and it's FASTTTTTTTTTTTTTT. Has unironically saved me trying to find a file I misplaced so many times. FASTTTTTTTTTTTTTT. - `ripgrep` - Drop in `grep` replacement that is recursive by default, and it's FASTTTTTTTTTTTTTT. Has unironically saved me trying to find a file I misplaced so many times. FASTTTTTTTTTTTTTT.
- `eza` - Drop in `ls` replacement, more modern formatting, and even has a built in tree command! (The amount of times I've had to install `tree`...) - `eza` - Drop in `ls` replacement, more modern formatting, and even has a built in tree command! (The amount of times I've had to install `tree`...)
- `zoxide` - Drop in `cd` replacement, can use `fzf` to...well...fuzzy find, and it also just knows where to go. Even without filepaths. - `zoxide` - Drop in `cd` replacement, can use `fzf` to...well...fuzzy find, and it also just knows where to go. Even without filepaths.
- `fd-find` - Drop in `find` replacement. Much like `ripgrep`, it is incredibly fast and simply more modernized. The main difference is that `ripgrep` looks through file contents, and `fd` looks for file(path)s. - `fd-find` - Drop in `find` replacement. Much like `ripgrep`, it is incredibly fast and simply more modernized. The main difference is that `ripgrep` looks through file contents, and `fd` looks for file(path)s.

29
bash/.profile Normal file
View File

@@ -0,0 +1,29 @@
# Just between you and me, I thought this was like a REQUIRED thing. Turns out, it's not. So this setup didn't work sometimes.
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "${PS1-}" ]; then
if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "$(id -u)" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi

View File

@@ -0,0 +1,3 @@
[font]
normal = ["Hack Nerd Font"]
size = 12

15
nvim/.neoconf.json Normal file
View File

@@ -0,0 +1,15 @@
{
"neodev": {
"library": {
"enabled": true,
"plugins": true
}
},
"neoconf": {
"plugins": {
"lua_ls": {
"enabled": true
}
}
}
}

View File

@@ -7,9 +7,9 @@ palette = "catppuccin_mocha"
# Starship modules # Starship modules
[character] [character]
# Note the use of Catppuccin color 'peach' # I think I like mauve more than peach...might change it
success_symbol = "[[󰄛](green) ](peach)" success_symbol = "[[󰄛](green) ](mauve)"
error_symbol = "[[󰄛](red) ](peach)" error_symbol = "[[󰄛](red) ](mauve)"
vimcmd_symbol = "[󰄛 ](subtext1)" # For use with zsh-vi-mode vimcmd_symbol = "[󰄛 ](subtext1)" # For use with zsh-vi-mode
[git_branch] [git_branch]