summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-07-22 20:53:11 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-07-22 20:53:11 -0400
commit08f7fb2f3a2306b54ddcc26e72c758625a14acc0 (patch)
treea9b6236ad4d43b92f4e7324b4e2820867d93aed0
parent66cf16d9f9124b5f6790565b2b98ead97e501595 (diff)
small improvements
-rw-r--r--.config/hypr/hyprland.conf8
-rw-r--r--.config/nvim/TODO1
-rw-r--r--.config/nvim/lua/plugins/surround.lua2
-rw-r--r--.config/nvim/lua/plugins/telescope.lua2
-rw-r--r--.zprofile1
-rw-r--r--.zshrc2
-rw-r--r--README.md3
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
diff --git a/.zprofile b/.zprofile
index 4c47666..486497e 100644
--- a/.zprofile
+++ b/.zprofile
@@ -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
diff --git a/.zshrc b/.zshrc
index baf74a9..f1a72ba 100644
--- a/.zshrc
+++ b/.zshrc
@@ -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)
diff --git a/README.md b/README.md
index fdfe728..5b75ea8 100644
--- a/README.md
+++ b/README.md
@@ -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