Skip to content

Commit 0f7a6c4

Browse files
change some shit
1 parent 5ae6372 commit 0f7a6c4

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

lua/modules/git/plugins.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ git({
5353
git({
5454
enabled = true,
5555
"sindrets/diffview.nvim",
56-
after = "gitsigns.nvim",
56+
dependencies = {
57+
"lewis6991/gitsigns.nvim",
58+
},
5759
config = conf.diffview,
5860
})

lua/modules/lang/plugins.lua

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ lang({
3535
"rcarriga/nvim-dap-ui",
3636
dependencies = {
3737
"nvim-neotest/nvim-nio",
38+
"mfussenegger/nvim-dap",
3839
},
39-
after = "nvim-dap",
4040
config = conf.dap_ui,
4141
})
4242

@@ -53,7 +53,9 @@ lang({
5353
enabled = true,
5454
"mfussenegger/nvim-dap-python",
5555
ft = "python",
56-
after = "nvim-dap",
56+
dependencies = {
57+
"mfussenegger/nvim-dap",
58+
},
5759
config = conf.dap_py,
5860
})
5961

lua/modules/lsp/settings/lsp_config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ local config = {
125125
-- signs = true,
126126
underline = true,
127127
severity_sort = true,
128-
update_in_insert = false,
128+
update_in_insert = true,
129129
virtual_text = false,
130130
virtual_lines = { only_current_line = true },
131131
--INFO: Cannot use vim.fn.sign_define (deprecated)

lua/modules/treesitter/plugins.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ts({
4040
"lewis6991/nvim-treesitter-context",
4141
-- after = "nvim-treesitter",
4242
ft = { "rust", "python" },
43-
opt = {
43+
opts = {
4444
enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
4545
throttle = true, -- Throttles plugin updates (may improve performance)
4646
max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.

0 commit comments

Comments
 (0)