diff --git a/doc/smoketest.md b/doc/smoketest.md index 0dcf2209..1dcea1b5 100644 --- a/doc/smoketest.md +++ b/doc/smoketest.md @@ -16,6 +16,8 @@ A manual smoketest checklist to ensure features are working: - `` should open a terminal - [ ] VimTmuxNavigator - Should be able to navigate between nvim and tmux panes using ``, ``, ``, `` for each respective direction +- [ ] Guttermarks + - Marks (place a mark with `m`) should be displayed in the gutter by their character ### Themes - [ ] Catppuccin Theme diff --git a/lua/custom/plugins/guttermarks.lua b/lua/custom/plugins/guttermarks.lua index fbc79a63..8fa1d3d6 100644 --- a/lua/custom/plugins/guttermarks.lua +++ b/lua/custom/plugins/guttermarks.lua @@ -1,4 +1 @@ -return { - 'dimtion/guttermarks.nvim', - event = { 'BufReadPost', 'BufNewFile', 'BufWritePre', 'FileType' }, -} +vim.pack.add { "https://github.com/dimtion/guttermarks.nvim" }