Updates to most things, new keybinds, local terminal.

This commit is contained in:
calcu1on
2025-02-14 23:19:38 -05:00
parent d7645de63d
commit 87b443444c
10 changed files with 70 additions and 89 deletions

9
lua/plugins/ahoy.lua Normal file
View File

@@ -0,0 +1,9 @@
return {
-- dir = "/Users/danchadwick/Projects/neovim/ahoy.nvim",
"calcu1on/ahoy.nvim",
config = function()
local ahoy = require('ahoy')
vim.keymap.set('n', '<leader>sf', function() ahoy.save_file() end)
end
}