~smlavine/astronvim-user

6ef86e6aace1bdf612d86a0f6d2c6325f9199b1a — Sebastian LaVine 1 year, 5 months ago 8e9951d
Revert "Disable nvim-dap"

This reverts commit e5d4d631a5de7a57c349967bb10adc7cd8c07862.

See previous commit.
2 files changed, 5 insertions(+), 8 deletions(-)

M mappings.lua
M plugins/core.lua
M mappings.lua => mappings.lua +1 -4
@@ 11,10 11,7 @@ return {
    ["<leader>bn"] = { "<cmd>tabnew<cr>", desc = "New tab" },
    ["<leader>bD"] = {
      function()
        require("astronvim.utils.status").heirline.buffer_picker(function(bufnr)
          require("astronvim.utils.buffer").close(
            bufnr)
        end)
        require("astronvim.utils.status").heirline.buffer_picker(function(bufnr) require("astronvim.utils.buffer").close(bufnr) end)
      end,
      desc = "Pick to close",
    },

M plugins/core.lua => plugins/core.lua +4 -4
@@ 22,7 22,9 @@ return {
            return require("cmp").lsp.CompletionItemKind.Snippet ~= entry:get_kind()
          end,
          priority = 1000,
        }, { name = "buffer", priority = 500, keyword_length = 3 }, { name = "path", priority = 250 },
        },
        { name = "buffer",  priority = 500, keyword_length = 3 },
        { name = "path",    priority = 250 },
        { name = "luasnip", priority = 1 },
      }



@@ 39,9 41,7 @@ return {
  },
  -- You can disable default plugins as follows:
  -- { "max397574/better-escape.nvim", enabled = false },

  { "mfussenegger/nvim-dap", enabled = false },

  --
  -- You can also easily customize additional setup of plugins that is outside of the plugin's setup call
  -- {
  --   "L3MON4D3/LuaSnip",