Merge branch 'main' into format-on-save

This commit is contained in:
Nick Burt 2026-04-28 21:50:05 -05:00
commit 16fb38f23f
2 changed files with 10 additions and 0 deletions

View File

@ -963,5 +963,11 @@ require('lazy').setup({
},
})
-- FIX: godot-server: should check if the server is already running first...
local gdprojectfilepath = vim.fn.getcwd() .. '/project.godot'
local isInGdDirectory = vim.fn.filereadable(gdprojectfilepath) == 1
if isInGdDirectory then vim.fn.serverstart '127.0.0.1:55432' end
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et

View File

@ -0,0 +1,4 @@
return {
'dimtion/guttermarks.nvim',
event = { 'BufReadPost', 'BufNewFile', 'BufWritePre', 'FileType' },
}