mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
fix
This commit is contained in:
parent
bb8120cea3
commit
9a58c3424a
@ -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)
|
||||||
|
|||||||
@ -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:
|
||||||
--
|
--
|
||||||
|
|||||||
@ -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>",
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user