This commit is contained in:
Kristofers Solo 2023-04-20 17:23:19 +03:00
parent bb8120cea3
commit 9a58c3424a
4 changed files with 3 additions and 4 deletions

View File

@ -41,7 +41,7 @@ comment.setup({
---Extra mapping; `gco`, `gcO`, `gcA` ---Extra mapping; `gco`, `gcO`, `gcA`
extra = true, extra = true,
---Extended mapping; `g>` `g<` `g>[count]{motion}` `g<[count]{motion}` ---Extended mapping; `g>` `g<` `g>[count]{motion}` `g<[count]{motion}`
extended = false, extended = true,
}, },
---Function to call before (un)comment ---Function to call before (un)comment
-- pre_hook = function(ctx) -- pre_hook = function(ctx)

View File

@ -122,7 +122,6 @@ dap.configurations.cpp = {
cwd = "${workspaceFolder}", cwd = "${workspaceFolder}",
stopOnEntry = false, stopOnEntry = false,
args = {}, args = {},
-- 💀 -- 💀
-- if you change `runInTerminal` to true, you might need to change the yama/ptrace_scope setting: -- if you change `runInTerminal` to true, you might need to change the yama/ptrace_scope setting:
-- --

View File

@ -1,4 +1,4 @@
-- vim.g.Illuminate_ftblacklist = { "alpha", "NvimTree", "*" } vim.g.Illuminate_ftblacklist = { "alpha", "NvimTree" }
vim.api.nvim_set_keymap( vim.api.nvim_set_keymap(
"n", "n",
"<A-n>", "<A-n>",

View File

@ -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 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 expandtab = true, -- convert tabs to spaces
shiftwidth = 4, -- the number of spaces inserted for each indentation 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 cursorcolumn = true, -- highlight the current column
cursorline = true, -- highlight the current line cursorline = true, -- highlight the current line
number = true, -- set numbered lines number = true, -- set numbered lines