nvim: Migrate configuration to lua and built-in plugin manager
This commit is contained in:
parent
9d31a63799
commit
6440203958
26 changed files with 453 additions and 616 deletions
21
nvim/lua/user/dap.lua
Normal file
21
nvim/lua/user/dap.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
local dap = require("dap")
|
||||
|
||||
dap.configurations.java = {{
|
||||
type = 'java',
|
||||
request = 'attach',
|
||||
name = 'Debug (Attach) port 5005',
|
||||
hostName = '127.0.0.1',
|
||||
port = 5005,
|
||||
},{
|
||||
type = 'java',
|
||||
request = 'attach',
|
||||
name = 'Debug (Attach) port 5006',
|
||||
hostName = '127.0.0.1',
|
||||
port = 5006,
|
||||
},{
|
||||
type = 'java',
|
||||
request = 'attach',
|
||||
name = 'Debug (Attach) port 5105',
|
||||
hostName = '127.0.0.1',
|
||||
port = 5105,
|
||||
}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue