Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dotfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Hensel
dotfiles
Commits
1c44cdf9
Commit
1c44cdf9
authored
6 months ago
by
Jan Hensel
Browse files
Options
Downloads
Patches
Plain Diff
nvim: update dap setup very slightly
parent
c2a862b0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.config/nvim/lua/plugins.lua
+3
-18
3 additions, 18 deletions
.config/nvim/lua/plugins.lua
with
3 additions
and
18 deletions
.config/nvim/lua/plugins.lua
+
3
−
18
View file @
1c44cdf9
...
...
@@ -60,6 +60,7 @@ local plugins = {
{
"rcarriga/nvim-dap-ui"
,
dependencies
=
{
"mfussenegger/nvim-dap"
,
"nvim-neotest/nvim-nio"
},
opts
=
{},
},
-- rust
{
...
...
@@ -122,9 +123,7 @@ local plugins = {
initialize_timeout_sec
=
20
,
-- a string that defines the port to start delve debugger.
-- default to string "${port}" which instructs nvim-dap
-- to start the process in a random available port.
-- if you set a port in your debug configuration, its value will be
-- assigned dynamically.
-- to start the process in a random available port
port
=
"${port}"
,
-- additional args to pass to dlv
args
=
{},
...
...
@@ -134,21 +133,7 @@ local plugins = {
-- compiled during debugging, for example.
-- passing build flags using args is ineffective, as those are
-- ignored by delve in dap mode.
-- avaliable ui interactive function to prompt for arguments get_arguments
build_flags
=
{},
-- whether the dlv process to be created detached or not. there is
-- an issue on Windows where this needs to be set to false
-- otherwise the dlv server creation will fail.
-- avaliable ui interactive function to prompt for build flags: get_build_flags
detached
=
vim
.
fn
.
has
(
"win32"
)
==
0
,
-- the current working directory to run dlv from, if other than
-- the current working directory.
cwd
=
nil
,
},
-- options related to running closest test
tests
=
{
-- enables verbosity when running the test.
verbose
=
false
,
build_flags
=
""
,
},
},
dependencies
=
{
'mfussenegger/nvim-dap'
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment