diff options
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) |
