update ghostty conf

This commit is contained in:
2025-08-20 11:28:10 -04:00
parent c29b713c53
commit 4081e035d9
2 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
font-feature = -liga
font-feature = -calt
font-feature = -dlig
theme = iTerm2 Dark Background

View File

@@ -31,6 +31,13 @@ vim.keymap.set("n", "<leader>n", ":e ~/.config/nvim/init.lua<CR>")
vim.keymap.set("n", "<leader>a", "<Esc>ggVG")
vim.keymap.set("n", "<leader>v", ":vs<cr><C-w>l")
vim.keymap.set("n", "<leader>h", ":sp<cr><C-w>j")
vim.keymap.set("n", "<leader>i", function()
local filepath = vim.fn.expand('%:p')
local line = vim.fn.line('.')
local text = filepath .. ':' .. line
vim.fn.setreg('+', text)
vim.notify('Copied: ' .. text, vim.log.levels.INFO)
end, { desc = "Copy file path with line number" })
vim.keymap.set("n", "<C-h>", "<C-w>h")
vim.keymap.set("n", "<C-l>", "<C-w>l")