repos / dotfiles

my dotfiles

commit
1e427f3
parent
4e0ca35
author
Eric bower
date
2025-09-23 13:47:17 -0400 EDT
chore(ghostty): cleanup config

chore(nvim): better grep usage
2 files changed,  +3, -8
M dot_config/ghostty/config
+1, -6
1@@ -1,7 +1,2 @@
2-font-size = 14
3-keybind = ctrl+i=increase_font_size:1
4-keybind = ctrl+o=decrease_font_size:1
5-keybind = ctrl+zero=reset_font_size
6-# window-decoration = false
7-keybind = shift+enter=text:\n
8 background = #14161b
9+font-size = 18
M dot_config/nvim/init.lua
+2, -2
 1@@ -32,7 +32,7 @@ o.swapfile = false
 2 o.foldmethod = "indent"
 3 o.foldlevel = 99
 4 o.foldnestmax = 1
 5-o.grepprg = "rg --vimgrep --smart-case --no-heading"
 6+o.grepprg = "rg --vimgrep --smart-case --hidden"
 7 o.grepformat = "%f:%l:%c:%m"
 8 vim.g.mapleader = ","
 9 vim.g.maplocalleader = ","
10@@ -79,7 +79,7 @@ map("n", "<leader>q", function() -- toggle quickfix
11 end, opts)
12 map("n", "<leader>g", function() -- grep entire project
13 	vim.ui.input({ prompt = "grep: " }, function(search)
14-		vim.cmd(string.format("silent grep! %s **", search))
15+		vim.cmd(string.format("silent grep! %s", search))
16 		vim.cmd("copen")
17 	end)
18 end, opts)