This commit is contained in:
Jonathan DeMasi
2025-09-12 11:00:25 -06:00
parent 4309e63c01
commit a5a1642db1
5 changed files with 1439 additions and 9 deletions

View File

@@ -1,9 +1,10 @@
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
})
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
})
vim.cmd 'colorscheme atom-dark-256'