|
|
|
@ -17,7 +17,6 @@ vim.o.number = true
|
|
|
|
|
-- Experiment for yourself to see if you like it!
|
|
|
|
|
vim.opt.relativenumber = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Enable mouse mode, can be useful for resizing splits for example!
|
|
|
|
|
vim.o.mouse = 'a'
|
|
|
|
|
|
|
|
|
@ -294,7 +293,6 @@ require('lazy').setup({
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Document existing key chains
|
|
|
|
|
spec = {
|
|
|
|
|
{ '<leader>s', group = '[S]earch' },
|
|
|
|
@ -577,9 +575,7 @@ require('lazy').setup({
|
|
|
|
|
-- This may be unwanted, since they displace some of your code
|
|
|
|
|
if client and client_supports_method(client, vim.lsp.protocol.Methods.textDocument_inlayHint, event.buf) then
|
|
|
|
|
map('<leader>th', function()
|
|
|
|
|
|
|
|
|
|
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled { bufnr = event.buf })
|
|
|
|
|
|
|
|
|
|
end, '[T]oggle Inlay [H]ints')
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
@ -796,7 +792,6 @@ require('lazy').setup({
|
|
|
|
|
-- See :h blink-cmp-config-keymap for defining your own keymap
|
|
|
|
|
preset = 'default',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see:
|
|
|
|
|
-- https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps
|
|
|
|
|
},
|
|
|
|
@ -817,7 +812,6 @@ require('lazy').setup({
|
|
|
|
|
default = { 'lsp', 'path', 'snippets', 'lazydev' },
|
|
|
|
|
providers = {
|
|
|
|
|
lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 },
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -861,7 +855,6 @@ require('lazy').setup({
|
|
|
|
|
|
|
|
|
|
-- You can configure highlights by doing something like:
|
|
|
|
|
vim.cmd.hi 'Comment gui=none'
|
|
|
|
|
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|