DAP Not Support

This commit is contained in:
asep komarudin 2023-01-20 23:28:37 +07:00
parent b691155539
commit 4fbc9cf758
4 changed files with 25 additions and 8 deletions

View file

@ -22,7 +22,6 @@
"markdown-preview.nvim": { "branch": "master", "commit": "9becceee5740b7db6914da87358a183ad11b2049" }, "markdown-preview.nvim": { "branch": "master", "commit": "9becceee5740b7db6914da87358a183ad11b2049" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "5b388c0de30f1605671ebfb9a20a620cda50ffce" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "5b388c0de30f1605671ebfb9a20a620cda50ffce" },
"mason-null-ls.nvim": { "branch": "main", "commit": "93946aef86b1409958c97ee5feaf30bdd1053e24" }, "mason-null-ls.nvim": { "branch": "main", "commit": "93946aef86b1409958c97ee5feaf30bdd1053e24" },
"mason-nvim-dap.nvim": { "branch": "main", "commit": "a775db8ac7c468fb05fcf67069961dba0d7feb56" },
"mason.nvim": { "branch": "main", "commit": "c2002d7a6b5a72ba02388548cfaf420b864fbc12" }, "mason.nvim": { "branch": "main", "commit": "c2002d7a6b5a72ba02388548cfaf420b864fbc12" },
"mini.ai": { "branch": "main", "commit": "14a1382372195573c6c7f494ab8bb298b03e6f04" }, "mini.ai": { "branch": "main", "commit": "14a1382372195573c6c7f494ab8bb298b03e6f04" },
"mini.comment": { "branch": "main", "commit": "e5294cc3e75bafb2369f235d31a98b01a9cc67ad" }, "mini.comment": { "branch": "main", "commit": "e5294cc3e75bafb2369f235d31a98b01a9cc67ad" },
@ -35,8 +34,6 @@
"nvim-autopairs": { "branch": "master", "commit": "4fc96c8f3df89b6d23e5092d31c866c53a346347" }, "nvim-autopairs": { "branch": "master", "commit": "4fc96c8f3df89b6d23e5092d31c866c53a346347" },
"nvim-cmp": { "branch": "main", "commit": "983453e32cb35533a119725883c04436d16c0120" }, "nvim-cmp": { "branch": "main", "commit": "983453e32cb35533a119725883c04436d16c0120" },
"nvim-colorizer.lua": { "branch": "master", "commit": "760e27df4dd966607e8fb7fd8b6b93e3c7d2e193" }, "nvim-colorizer.lua": { "branch": "master", "commit": "760e27df4dd966607e8fb7fd8b6b93e3c7d2e193" },
"nvim-dap": { "branch": "master", "commit": "700a3c7d6fbe5b07bee74e9952b456120d355c47" },
"nvim-dap-ui": { "branch": "master", "commit": "1e21b3b50e67700e32285b5a74e645311fd8bbea" },
"nvim-lsp-installer": { "branch": "main", "commit": "17e0bfa5f2c8854d1636fcd036dc8284db136baa" }, "nvim-lsp-installer": { "branch": "main", "commit": "17e0bfa5f2c8854d1636fcd036dc8284db136baa" },
"nvim-lspconfig": { "branch": "master", "commit": "f11fdff7e8b5b415e5ef1837bdcdd37ea6764dda" }, "nvim-lspconfig": { "branch": "master", "commit": "f11fdff7e8b5b415e5ef1837bdcdd37ea6764dda" },
"nvim-navic": { "branch": "master", "commit": "7a2b823152fe4de65ee7925b0e32d26ed73bc57c" }, "nvim-navic": { "branch": "master", "commit": "7a2b823152fe4de65ee7925b0e32d26ed73bc57c" },

View file

@ -6,12 +6,14 @@ return {
event = "BufWinEnter", event = "BufWinEnter",
module = "plenary", module = "plenary",
}, },
-- color scheme
{ {
"folke/tokyonight.nvim", "folke/tokyonight.nvim",
commit = "66bfc2e8f754869c7b651f3f47a2ee56ae557764", commit = "66bfc2e8f754869c7b651f3f47a2ee56ae557764",
lazy = false, -- make sure we load this during startup if it is your main colorscheme lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins priority = 1000, -- make sure to load this before all the other start plugins
}, },
-- dashboard
{ {
"goolord/alpha-nvim", "goolord/alpha-nvim",
commit = "0bb6fc0646bcd1cdb4639737a1cee8d6e08bcc31", commit = "0bb6fc0646bcd1cdb4639737a1cee8d6e08bcc31",
@ -369,10 +371,12 @@ return {
-- debuging -- debuging
{ {
"mfussenegger/nvim-dap", "mfussenegger/nvim-dap",
enabled = vim.fn.has("win32") == 0,
}, },
{ {
"rcarriga/nvim-dap-ui", "rcarriga/nvim-dap-ui",
dependencies = "mfussenegger/nvim-dap", dependencies = "mfussenegger/nvim-dap",
enabled = vim.fn.has("win32") == 0,
init = function() init = function()
require("user.dapui") require("user.dapui")
end, end,
@ -380,6 +384,7 @@ return {
{ {
"jayp0521/mason-nvim-dap.nvim", "jayp0521/mason-nvim-dap.nvim",
dependencies = { "williamboman/mason.nvim", "mfussenegger/nvim-dap" }, dependencies = { "williamboman/mason.nvim", "mfussenegger/nvim-dap" },
enabled = vim.fn.has("win32") == 0,
init = function() init = function()
require("user.mason_dap") require("user.mason_dap")
end, end,

View file

@ -1,4 +1,7 @@
local dap, dapui = require("dap"), require("dapui") local status_ok, dap, dapui = require("dap"), require("dapui")
if not status_ok then
return
end
dap.listeners.after.event_initialized["dapui_config"] = function() dap.listeners.after.event_initialized["dapui_config"] = function()
dapui.open() dapui.open()
end end

View file

@ -91,7 +91,7 @@ local trn = ""
if vim.fn.has("win32") then if vim.fn.has("win32") then
trn = "pwsh<cr>" trn = "pwsh<cr>"
end end
local is_dap = pcall(require, "nvim-dap")
local mappings2 = { local mappings2 = {
["/"] = { "<esc><cmd>lua require('Comment.api').toggle.linewise(vim.fn.visualmode())<cr>", "Commet Block" }, ["/"] = { "<esc><cmd>lua require('Comment.api').toggle.linewise(vim.fn.visualmode())<cr>", "Commet Block" },
} }
@ -230,19 +230,31 @@ local mappings = {
name = "Debug", name = "Debug",
b = { b = {
function() function()
require("dap").toggle_breakpoint() if is_dap then
require("dap").toggle_breakpoint()
else
vim.notify("DAP Not Support", "error")
end
end, end,
"Toggle Breakpoint", "Toggle Breakpoint",
}, },
B = { B = {
function() function()
require("dap").clear_breakpoints() if is_dap then
require("dap").clear_breakpoints()
else
vim.notify("DAP Not Support", "error")
end
end, end,
"Clear Breakpoints", "Clear Breakpoints",
}, },
c = { c = {
function() function()
require("dap").continue() if is_dap then
require("dap").continue()
else
vim.notify("DAP Not Support", "error")
end
end, end,
"Start/Continue", "Start/Continue",
}, },