add marks plugin and broader signcolumn
This commit is contained in:
parent
6e5fa5adb9
commit
d5009afeff
2 changed files with 13 additions and 1 deletions
|
@ -9,7 +9,7 @@ vim.api.nvim_set_option("mouse","")
|
||||||
-- relative numbers
|
-- relative numbers
|
||||||
vim.opt.nu = true
|
vim.opt.nu = true
|
||||||
vim.opt.rnu = true
|
vim.opt.rnu = true
|
||||||
vim.opt.signcolumn = 'yes'
|
vim.opt.signcolumn = 'yes:3'
|
||||||
|
|
||||||
-- setting completion menu for autocompletion
|
-- setting completion menu for autocompletion
|
||||||
vim.opt.completeopt = 'menu,menuone,noselect'
|
vim.opt.completeopt = 'menu,menuone,noselect'
|
||||||
|
|
12
lua/plugin/marks.lua
Normal file
12
lua/plugin/marks.lua
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
"chentoast/marks.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
opts = {},
|
||||||
|
config = function()
|
||||||
|
require 'marks'.setup({
|
||||||
|
sign_priority = 5;
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue