diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-07-22 20:53:11 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-07-22 20:53:11 -0400 |
| commit | 08f7fb2f3a2306b54ddcc26e72c758625a14acc0 (patch) | |
| tree | a9b6236ad4d43b92f4e7324b4e2820867d93aed0 | |
| parent | 66cf16d9f9124b5f6790565b2b98ead97e501595 (diff) | |
small improvements
| -rw-r--r-- | .config/hypr/hyprland.conf | 8 | ||||
| -rw-r--r-- | .config/nvim/TODO | 1 | ||||
| -rw-r--r-- | .config/nvim/lua/plugins/surround.lua | 2 | ||||
| -rw-r--r-- | .config/nvim/lua/plugins/telescope.lua | 2 | ||||
| -rw-r--r-- | .zprofile | 1 | ||||
| -rw-r--r-- | .zshrc | 2 | ||||
| -rw-r--r-- | README.md | 3 |
7 files changed, 11 insertions, 8 deletions
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 366fe5b..4304f15 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -41,19 +41,19 @@ general { allow_tearing = true resize_on_border = false - gaps_in = 2 - gaps_out = 4 + gaps_in = 3 + gaps_out = 6 border_size = 2 col.active_border = rgba(AFD7FFff) - col.inactive_border = rgba(595959ff) + col.inactive_border = rgba(59595900) } windowrulev2 = noshadow, floating:0 decoration { - rounding = 0 + rounding = 6 blur { enabled = true diff --git a/.config/nvim/TODO b/.config/nvim/TODO index c8cc46a..655d2e7 100644 --- a/.config/nvim/TODO +++ b/.config/nvim/TODO @@ -2,3 +2,4 @@ - undo chunks typed in insert mode - argument preview in status bar - next snippet argument +- fix yank taking time diff --git a/.config/nvim/lua/plugins/surround.lua b/.config/nvim/lua/plugins/surround.lua index ffe4bf3..7504211 100644 --- a/.config/nvim/lua/plugins/surround.lua +++ b/.config/nvim/lua/plugins/surround.lua @@ -4,7 +4,7 @@ return { config = function() require("mini.surround").setup({ mappings = { - add = 'ys', + add = '', delete = 'ds', find = '', find_left = '', diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index c9a544f..8d94ca4 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -8,7 +8,7 @@ return { local lazy_telescope = function(builtin) return function(...) if builtin == 'find_files_custom' then - require('telescope.builtin').find_files({ find_command = {'rg', '--files', '--hidden', '-g', '!.git' }}) + require('telescope.builtin').find_files({ find_command = {'rg', '--files', '--hidden', '-g', '!.git', '-g', '!external/' }}) else require('telescope.builtin')[builtin](...) end @@ -1,4 +1,5 @@ export PATH="$HOME/dotfiles/scripts/:$PATH" +export EDITOR="/bin/nvim" if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then exec dbus-launch --exit-with-session Hyprland @@ -21,7 +21,7 @@ alias grep='grep --color=auto' # Prompt set_prompt() { # PROMPT="%B%F{174}%n%f%b%F{15}@%f%F{81}%m %F{47}%~ %F{105}$(git-ps1)%F{15}$ " - PROMPT="%B%F{121}%n%f%b%F{15}@%f%F{153}%m %F{47}%~ %F{105}$(git-ps1)%F{15}$ " + PROMPT="%B%F{153}%n %F{47}%~ %F{105}$(git-ps1)%F{15}$ " } precmd_functions+=(set_prompt) @@ -33,4 +33,5 @@ Everything can be installed by running `stow .` Since there are probably conflic - [x] Screenshot - [x] Idle - [x] Sound -- [ ] Wmenu for commands +- [ ] Improve zsh completion and highlighting +- [ ] Improve nvim |
