diff --git a/lua/plugins/cmake-tools.lua b/lua/plugins/cmake-tools.lua index 658a20e..e942a2b 100644 --- a/lua/plugins/cmake-tools.lua +++ b/lua/plugins/cmake-tools.lua @@ -1,6 +1,6 @@ return { 'Civitasv/cmake-tools.nvim', - config = { + opts = { cmake_command = 'cmake', cmake_generate_options = { '-D', 'CMAKE_EXPORT_COMPILE_COMMANDS=1', '-G', 'Ninja' }, cmake_show_console = 'always', diff --git a/lua/plugins/gitsigns.lua b/lua/plugins/gitsigns.lua index 27f6339..d8faf35 100644 --- a/lua/plugins/gitsigns.lua +++ b/lua/plugins/gitsigns.lua @@ -1,6 +1,6 @@ return { 'lewis6991/gitsigns.nvim', - config = { + opts = { current_line_blame = false, current_line_blame_opts = { virt_text = true, diff --git a/lua/plugins/neogen.lua b/lua/plugins/neogen.lua index 432abba..4eca942 100644 --- a/lua/plugins/neogen.lua +++ b/lua/plugins/neogen.lua @@ -1,7 +1,7 @@ return { 'danymat/neogen', dependencies = 'nvim-treesitter/nvim-treesitter', - config = { + opts = { enabled = true, languages = { cpp = { diff --git a/lua/plugins/neotree.lua b/lua/plugins/neotree.lua index d0580c8..5512143 100644 --- a/lua/plugins/neotree.lua +++ b/lua/plugins/neotree.lua @@ -10,7 +10,7 @@ return { 'kyazdani42/nvim-web-devicons', 'MunifTanjim/nui.nvim', }, - config = { + opts = { window = { -- see https://github.com/MunifTanjim/nui.nvim/tree/main/lua/nui/popup for -- possible options. These can also be functions that return these options. position = 'float', -- left, right, float, current diff --git a/lua/plugins/which-key.lua b/lua/plugins/which-key.lua index 3c4fc71..5b41da1 100644 --- a/lua/plugins/which-key.lua +++ b/lua/plugins/which-key.lua @@ -1,6 +1,6 @@ return { 'folke/which-key.nvim', - config = { + opts = { plugins = { marks = false, registers = false,