From 615896c466bde905e329c6c155413b94ad349931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Dudr?= Date: Thu, 28 Mar 2024 00:29:40 +0100 Subject: [PATCH] update --- dot_config/nvim/lua/configs/misc.lua | 1 - dot_config/nvim/lua/configs/packages/dap.lua | 20 +++++++++---------- .../nvim/lua/configs/packages/devicons.lua | 1 - dot_config/nvim/lua/configs/packages/lsp.lua | 1 + 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/dot_config/nvim/lua/configs/misc.lua b/dot_config/nvim/lua/configs/misc.lua index 6ff3aed..10ee58f 100644 --- a/dot_config/nvim/lua/configs/misc.lua +++ b/dot_config/nvim/lua/configs/misc.lua @@ -21,7 +21,6 @@ function M.setup() end, }) - -- }}} LAYA --- terminal {{{ diff --git a/dot_config/nvim/lua/configs/packages/dap.lua b/dot_config/nvim/lua/configs/packages/dap.lua index 0f544ff..2f4d08f 100644 --- a/dot_config/nvim/lua/configs/packages/dap.lua +++ b/dot_config/nvim/lua/configs/packages/dap.lua @@ -1,6 +1,6 @@ local ensure = { 'php-debug-adapter', - 'netcoredbg' + 'netcoredbg', } return { @@ -15,7 +15,7 @@ return { end end, dependencies = { - 'rcarriga/nvim-dap-ui', + { 'rcarriga/nvim-dap-ui', dependencies = 'nvim-neotest/nvim-nio' }, 'williamboman/mason.nvim', }, keys = { @@ -30,7 +30,7 @@ return { function(input) require('dapui').eval(input) end) - end, }, + end }, }, opts = { cs = { -- {{{ @@ -39,16 +39,16 @@ return { command = 'netcoredbg', args = { '--interpreter=vscode' }, }, - confs ={ + confs = { { - type = "cs", - name = "launch - netcoredbg", - request = "launch", + type = 'cs', + name = 'launch - netcoredbg', + request = 'launch', program = function() return vim.fn.input('Path to dll', vim.fn.getcwd() .. '/bin/Debug/', 'file') end, }, - } + }, }, --}}} php = { -- {{{ @@ -72,13 +72,13 @@ return { text = '', texthl = 'DiagnosticSignError', linehl = '', - numhl = '' + numhl = '', }) vim.fn.sign_define('DapBreakpointCondition', { text = '', texthl = 'DiagnosticSignError', linehl = '', - numhl = '' + numhl = '', }) vim.fn.sign_define('DapLogPoint', { text = '󱂅', texthl = '', linehl = '', numhl = '' }) vim.fn.sign_define('DapStopped', { text = '', texthl = 'DiagnosticSignOk', linehl = '', numhl = '' }) diff --git a/dot_config/nvim/lua/configs/packages/devicons.lua b/dot_config/nvim/lua/configs/packages/devicons.lua index 5917c1a..6c1561e 100644 --- a/dot_config/nvim/lua/configs/packages/devicons.lua +++ b/dot_config/nvim/lua/configs/packages/devicons.lua @@ -12,7 +12,6 @@ end return { 'nvim-tree/nvim-web-devicons', - dir = '/home/vladimir/devel/nvim-web-devicons', opts = { override = { xml = make_override('󰗀', 'orange', 'XML'), diff --git a/dot_config/nvim/lua/configs/packages/lsp.lua b/dot_config/nvim/lua/configs/packages/lsp.lua index 9635106..74b0d37 100644 --- a/dot_config/nvim/lua/configs/packages/lsp.lua +++ b/dot_config/nvim/lua/configs/packages/lsp.lua @@ -382,6 +382,7 @@ return { }, { 'simrat39/rust-tools.nvim', + dependencies = { 'williamboman/mason.nvim' }, build = ':MasonInstall rust-analyzer', config = true, },