From 1b26f91faa4abf5451cb9f3203d14d73cdcdc6d6 Mon Sep 17 00:00:00 2001 From: Kiruel Date: Thu, 18 Apr 2024 14:49:26 +0200 Subject: [PATCH] feat: adding nvim nio --- init.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index f2623096..d6863382 100644 --- a/init.lua +++ b/init.lua @@ -100,7 +100,7 @@ require('lazy').setup({ }, -- Useful plugin to show you pending keybinds. - { 'folke/which-key.nvim', opts = {} }, + { 'folke/which-key.nvim', opts = {} }, { -- Adds git related signs to the gutter, as well as utilities for managing changes 'lewis6991/gitsigns.nvim', @@ -131,6 +131,7 @@ require('lazy').setup({ end, }, }, + { "nvim-neotest/nvim-nio" }, { -- Set lualine as statusline 'nvim-lualine/lualine.nvim', @@ -155,8 +156,7 @@ require('lazy').setup({ }, -- "gc" to comment visual regions/lines - { 'numToStr/Comment.nvim', opts = {} }, - + { 'numToStr/Comment.nvim', opts = {} }, { -- Highlight, edit, and navigate code 'nvim-treesitter/nvim-treesitter', @@ -170,6 +170,7 @@ require('lazy').setup({ -- These are some example plugins that I've included in the kickstart repository. -- Uncomment any of the lines below to enable them. -- require 'kickstart.plugins.autoformat', + require 'kickstart.plugins.debug', -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`