From d5d84ef6a6bec2f8aa1708ebf423d367d350f5ef Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Tue, 10 Feb 2026 21:28:05 -0600 Subject: [PATCH] install the marks plugin --- init.lua | 1 - lua/custom/plugins/marks.lua | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 lua/custom/plugins/marks.lua diff --git a/init.lua b/init.lua index f80af8c1..eaf4cceb 100644 --- a/init.lua +++ b/init.lua @@ -881,7 +881,6 @@ 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` diff --git a/lua/custom/plugins/marks.lua b/lua/custom/plugins/marks.lua new file mode 100644 index 00000000..2c63d712 --- /dev/null +++ b/lua/custom/plugins/marks.lua @@ -0,0 +1,5 @@ +return { + 'chentoast/marks.nvim', + event = 'VeryLazy', + opts = {}, +}