Skip to content

Commit

Permalink
change some shit
Browse files Browse the repository at this point in the history
  • Loading branch information
bryant-the-coder committed Jun 2, 2024
1 parent 5ae6372 commit 0f7a6c4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion lua/modules/git/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ git({
git({
enabled = true,
"sindrets/diffview.nvim",
after = "gitsigns.nvim",
dependencies = {
"lewis6991/gitsigns.nvim",
},
config = conf.diffview,
})
6 changes: 4 additions & 2 deletions lua/modules/lang/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ lang({
"rcarriga/nvim-dap-ui",
dependencies = {
"nvim-neotest/nvim-nio",
"mfussenegger/nvim-dap",
},
after = "nvim-dap",
config = conf.dap_ui,
})

Expand All @@ -53,7 +53,9 @@ lang({
enabled = true,
"mfussenegger/nvim-dap-python",
ft = "python",
after = "nvim-dap",
dependencies = {
"mfussenegger/nvim-dap",
},
config = conf.dap_py,
})

Expand Down
2 changes: 1 addition & 1 deletion lua/modules/lsp/settings/lsp_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ local config = {
-- signs = true,
underline = true,
severity_sort = true,
update_in_insert = false,
update_in_insert = true,
virtual_text = false,
virtual_lines = { only_current_line = true },
--INFO: Cannot use vim.fn.sign_define (deprecated)
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/treesitter/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ts({
"lewis6991/nvim-treesitter-context",
-- after = "nvim-treesitter",
ft = { "rust", "python" },
opt = {
opts = {
enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
throttle = true, -- Throttles plugin updates (may improve performance)
max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.
Expand Down

0 comments on commit 0f7a6c4

Please sign in to comment.