Skip to content

Commit c36dac7

Browse files
committed
fix conflicts some more
1 parent affa7b3 commit c36dac7

File tree

1 file changed

+9
-21
lines changed

1 file changed

+9
-21
lines changed

init.lua

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -338,14 +338,6 @@ require('lazy').setup({
338338
{ '<leader>h', group = 'Git [H]unk', mode = { 'n', 'v' } },
339339
},
340340
},
341-
require('which-key').add {
342-
{ '<leader>c', group = '[C]ode' },
343-
{ '<leader>d', group = '[D]ocument]' },
344-
{ '<leader>r', group = '[R]ename' },
345-
{ '<leader>s', group = '[S]earch' },
346-
{ '<leader>w', group = '[W]orkspace' },
347-
}
348-
end,
349341
},
350342

351343
-- NOTE: Plugins can specify dependencies.
@@ -480,9 +472,9 @@ require('lazy').setup({
480472
{
481473
-- Main LSP Configuration
482474
'neovim/nvim-lspconfig',
483-
opts = {
484-
inlay_hints = { enabled = true },
485-
},
475+
-- opts = {
476+
-- inlay_hints = { enabled = true },
477+
-- },
486478
dependencies = {
487479
-- Automatically install LSPs and related tools to stdpath for Neovim
488480
{ 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants
@@ -711,8 +703,6 @@ require('lazy').setup({
711703
},
712704
},
713705
},
714-
--
715-
716706
lua_ls = {
717707
-- cmd = {...},
718708
-- filetypes = { ...},
@@ -723,13 +713,12 @@ require('lazy').setup({
723713
callSnippet = 'Replace',
724714
},
725715
-- You can toggle below to ignore Lua_LS's noisy `missing-fields` warnings
726-
diagnostics = { -- disable = { 'missing-fields' } },
716+
diagnostics = { disable = { 'missing-fields' } },
727717
globals = { 'vim' },
728718
},
729719
hint = { enable = true },
730720
},
731721
},
732-
},
733722
ols = {},
734723
}
735724

@@ -762,7 +751,6 @@ require('lazy').setup({
762751
},
763752
}
764753
end,
765-
checker = { enabled = true },
766754
},
767755

768756
{ -- Autoformat
@@ -1026,11 +1014,11 @@ require('lazy').setup({
10261014
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
10271015
--
10281016
require 'kickstart.plugins.debug',
1029-
-- require 'kickstart.plugins.indent_line',
1030-
-- require 'kickstart.plugins.lint',
1031-
-- require 'kickstart.plugins.autopairs',
1032-
-- require 'kickstart.plugins.neo-tree',
1033-
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
1017+
require 'kickstart.plugins.indent_line',
1018+
require 'kickstart.plugins.lint',
1019+
require 'kickstart.plugins.autopairs',
1020+
require 'kickstart.plugins.neo-tree',
1021+
require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
10341022

10351023
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
10361024
-- This is the easiest way to modularize your config.

0 commit comments

Comments
 (0)