diff --git a/README.md b/README.md index 4a8401c..bfa2924 100644 --- a/README.md +++ b/README.md @@ -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. -- `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`...) - `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. diff --git a/bash/.profile b/bash/.profile new file mode 100644 index 0000000..6fdeb37 --- /dev/null +++ b/bash/.profile @@ -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 diff --git a/neovide/.config/neovide/config.toml b/neovide/.config/neovide/config.toml new file mode 100644 index 0000000..2fd61d0 --- /dev/null +++ b/neovide/.config/neovide/config.toml @@ -0,0 +1,3 @@ +[font] +normal = ["Hack Nerd Font"] +size = 12 diff --git a/nvim/.gitignore b/nvim/.gitignore new file mode 100644 index 0000000..cc5457a --- /dev/null +++ b/nvim/.gitignore @@ -0,0 +1,8 @@ +tt.* +.tests +doc/tags +debug +.repro +foo.* +*.log +data diff --git a/nvim/.neoconf.json b/nvim/.neoconf.json new file mode 100644 index 0000000..7c48087 --- /dev/null +++ b/nvim/.neoconf.json @@ -0,0 +1,15 @@ +{ + "neodev": { + "library": { + "enabled": true, + "plugins": true + } + }, + "neoconf": { + "plugins": { + "lua_ls": { + "enabled": true + } + } + } +} diff --git a/starship/.config/starship.toml b/starship/.config/starship.toml index 5099d5e..a3cc918 100644 --- a/starship/.config/starship.toml +++ b/starship/.config/starship.toml @@ -7,9 +7,9 @@ palette = "catppuccin_mocha" # Starship modules [character] -# Note the use of Catppuccin color 'peach' -success_symbol = "[[󰄛](green) ❯](peach)" -error_symbol = "[[󰄛](red) ❯](peach)" +# I think I like mauve more than peach...might change it +success_symbol = "[[󰄛](green) ❯](mauve)" +error_symbol = "[[󰄛](red) ❯](mauve)" vimcmd_symbol = "[󰄛 ❮](subtext1)" # For use with zsh-vi-mode [git_branch]