nvim: after/plugin/marks: Do not show builtin marks

This commit is contained in:
Sanchayan Maity 2021-10-15 13:16:39 +05:30
parent 138720944c
commit f4fd6ab1e8
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ local opts = { noremap=true, silent=true, unique=true }
require'marks'.setup {
cyclic = true,
default_mappings = true,
builtin_marks = { "'", ".", "<", ">", "^" },
builtin_marks = {},
}
remap('n', '<Leader>mt', ':MarksToggleSigns<CR>', opts)