Compare commits
2 Commits
9a5e0a62aa
...
0aa80f9874
Author | SHA1 | Date | |
---|---|---|---|
0aa80f9874 | |||
7f685ff8da |
@ -72,6 +72,9 @@ vim.opt.showmode = false
|
||||
-- See `:help 'clipboard'`
|
||||
vim.opt.clipboard = 'unnamedplus'
|
||||
|
||||
-- Display tabs as 2 spaces
|
||||
vim.opt.tabstop = 2
|
||||
|
||||
-- Enable break indent
|
||||
vim.opt.breakindent = true
|
||||
|
||||
@ -760,6 +763,20 @@ require('lazy').setup({
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
'ray-x/lsp_signature.nvim',
|
||||
event = 'VeryLazy',
|
||||
opts = {
|
||||
hint_inline = function()
|
||||
return true
|
||||
end,
|
||||
hint_prefix = '',
|
||||
},
|
||||
config = function(_, opts)
|
||||
require('lsp_signature').setup(opts)
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
-- Set the colorscheme.
|
||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||
|
Loading…
x
Reference in New Issue
Block a user