nvim: add some rust stuff and codecompanion

This commit is contained in:
Mark Riedesel 2024-09-07 12:24:20 -05:00
parent 4cec54dcf9
commit 42d31a8de1
11 changed files with 81 additions and 11 deletions

View file

@ -84,3 +84,9 @@ end
-- :W to save with sudo
-- vim.api.nvim_create_user_command('')
-- vim.api.nvim_create_autocmd({"CursorHold", "CursorHoldI"}, {
-- group = vim.api.nvim_create_augroup("float_diagnostic_cursor", { clear = false }),
-- callback = function ()
-- vim.diagnostic.open_float(nil, {focus=false, scope="cursor"})
-- end
-- })