This commit is contained in:
Jonathan DeMasi
2025-09-11 23:25:29 -06:00
commit 4309e63c01
8 changed files with 164 additions and 0 deletions

9
init.lua Normal file
View File

@@ -0,0 +1,9 @@
require("config.lazy")
vim.keymap.set('n', '<leader>e', '<cmd>lua vim.diagnostic.open_float()<CR>', {noremap=true, silent=true})
vim.keymap.set('n', '<leader>f', '<cmd>lua MiniFiles.open()<cr>', { desc = "Find files recursively" })
vim.diagnostic.config({
virtual_text = true, -- Display diagnostics as inline text
-- Other options can be added here, like:
-- signs = true, -- Show icons in the gutter
-- underline = true, -- Highlight the affected text
})