mirror of
https://github.com/ForeverPyrite/dotfiles.git
synced 2025-12-10 01:08:06 +00:00
Compare commits
2 Commits
dd5d08e99d
...
52fbaae9ef
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52fbaae9ef | ||
|
|
cbd8c46e9c |
9
.gitignore
vendored
9
.gitignore
vendored
@@ -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*
|
||||||
|
|||||||
@@ -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
29
bash/.profile
Normal 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
|
||||||
3
neovide/.config/neovide/config.toml
Normal file
3
neovide/.config/neovide/config.toml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[font]
|
||||||
|
normal = ["Hack Nerd Font"]
|
||||||
|
size = 12
|
||||||
15
nvim/.neoconf.json
Normal file
15
nvim/.neoconf.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"neodev": {
|
||||||
|
"library": {
|
||||||
|
"enabled": true,
|
||||||
|
"plugins": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"neoconf": {
|
||||||
|
"plugins": {
|
||||||
|
"lua_ls": {
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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]
|
||||||
|
|||||||
Reference in New Issue
Block a user