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 = 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)
|
||||
|
||||
@ -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:
|
||||
--
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
-- vim.g.Illuminate_ftblacklist = { "alpha", "NvimTree", "*" }
|
||||
vim.g.Illuminate_ftblacklist = { "alpha", "NvimTree" }
|
||||
vim.api.nvim_set_keymap(
|
||||
"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
|
||||
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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user