From 9a58c3424a683a950888a6377c06686c5208453a Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 20 Apr 2023 17:23:19 +0300 Subject: [PATCH] fix --- lua/user/comment.lua | 2 +- lua/user/dap.lua | 1 - lua/user/illuminate.lua | 2 +- lua/user/options.lua | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lua/user/comment.lua b/lua/user/comment.lua index 84d72ad..fdbed43 100644 --- a/lua/user/comment.lua +++ b/lua/user/comment.lua @@ -41,7 +41,7 @@ comment.setup({ ---Extra mapping; `gco`, `gcO`, `gcA` extra = true, ---Extended mapping; `g>` `g<` `g>[count]{motion}` `g<[count]{motion}` - extended = false, + extended = true, }, ---Function to call before (un)comment -- pre_hook = function(ctx) diff --git a/lua/user/dap.lua b/lua/user/dap.lua index 4cc6824..5abc613 100644 --- a/lua/user/dap.lua +++ b/lua/user/dap.lua @@ -122,7 +122,6 @@ dap.configurations.cpp = { cwd = "${workspaceFolder}", stopOnEntry = false, args = {}, - -- 💀 -- if you change `runInTerminal` to true, you might need to change the yama/ptrace_scope setting: -- diff --git a/lua/user/illuminate.lua b/lua/user/illuminate.lua index 0787404..bfcde5d 100644 --- a/lua/user/illuminate.lua +++ b/lua/user/illuminate.lua @@ -1,4 +1,4 @@ --- vim.g.Illuminate_ftblacklist = { "alpha", "NvimTree", "*" } +vim.g.Illuminate_ftblacklist = { "alpha", "NvimTree" } vim.api.nvim_set_keymap( "n", "", diff --git a/lua/user/options.lua b/lua/user/options.lua index 139452c..06cfc72 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -23,7 +23,7 @@ local options = { writebackup = false, -- if a file is being edited by another program (or was written to file while editing with another program), it is not allowed to be edited expandtab = true, -- convert tabs to spaces shiftwidth = 4, -- the number of spaces inserted for each indentation - tabstop = 4, -- insert 2 spaces for a tab + tabstop = 4, -- insert 4 spaces for a tab cursorcolumn = true, -- highlight the current column cursorline = true, -- highlight the current line number = true, -- set numbered lines