mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 19:44:58 +02:00
getting to the closing part of this repo
This commit is contained in:
parent
e5c03b4206
commit
bdbe2f3ae2
6 changed files with 152 additions and 125 deletions
|
@ -1,3 +1,5 @@
|
|||
-- You can add your own plugins here or in other files in this directory!
|
||||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
-- autoformat.lua
|
||||
--
|
||||
-- Use your language server to automatically format your code on save.
|
||||
-- Adds additional commands as well to manage the behavior
|
||||
|
||||
return {
|
||||
'neovim/nvim-lspconfig',
|
||||
|
||||
|
|
|
@ -1,5 +1,16 @@
|
|||
-- debug.lua
|
||||
--
|
||||
-- Shows how to use the DAP plugin to debug your code.
|
||||
--
|
||||
-- Primarily focused on configuring the debugger for Go, but can
|
||||
-- be extended to other languages as well. That's why it's called
|
||||
-- kickstart.nvim and not kitchen-sink.nvim ;)
|
||||
|
||||
return {
|
||||
-- NOTE: Yes, you can install new plugins here!
|
||||
'mfussenegger/nvim-dap',
|
||||
|
||||
-- NOTE: And you can specify dependencies as well
|
||||
dependencies = {
|
||||
-- Creates a beautiful debugger UI
|
||||
'rcarriga/nvim-dap-ui',
|
||||
|
@ -13,12 +24,6 @@ return {
|
|||
},
|
||||
|
||||
config = function()
|
||||
-- Optional debug adapter setup
|
||||
--
|
||||
-- To enable setup, change `disable = true` in the packer section
|
||||
-- of the init.lua. You'll also want to copy this file into your
|
||||
-- config at ~/.config/nvim/after/plugin/dap.lua
|
||||
|
||||
local dap = require 'dap'
|
||||
local dapui = require 'dapui'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue