diff options
| author | talha <-> | 2025-12-06 15:09:52 +0500 |
|---|---|---|
| committer | talha <-> | 2025-12-06 15:09:52 +0500 |
| commit | 03c63bf3bb3d2c93dac0bb481a7be6b4251c3e6e (patch) | |
| tree | 982697c009c3dd62e0454a11636e261771fbce6e /init.lua | |
| parent | 66cecf10657d4ce38d95e8f3085fb09e90a7f602 (diff) | |
Added snippet, minor updates to configmaster
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ vim.opt.cursorline = true vim.opt.scrolloff = 8 vim.opt.updatetime = 50 vim.opt.linebreak = false -vim.cmd[[let &showbreak = "> "]] +vim.cmd[[let &showbreak = "←"]] if vim.fn.executable('rg') > 0 then vim.opt.grepprg = 'rg --vimgrep' @@ -103,7 +103,7 @@ function WriteLines(toWrite) end local posYX = vim.api.nvim_win_get_cursor(0) print(posYX[0], posYX[1], posYX[2]) - vim.api.nvim_buf_set_lines(0, posYX[1]-1, posYX[2], true, toWrite) + vim.api.nvim_buf_set_lines(0, posYX[1]-1, posYX[1]-1, true, toWrite) end function StrSplit(inpstr, sep) |
