15 lines
346 B
Lua
15 lines
346 B
Lua
require "nvchad.options"
|
|
|
|
-- add yours here!
|
|
|
|
-- local o = vim.o
|
|
-- o.cursorlineopt ='both' -- to enable cursorline!
|
|
|
|
vim.api.nvim_create_autocmd("BufReadPost", {
|
|
pattern = { "*" },
|
|
callback = function()
|
|
if vim.fn.line "'\"" > 1 and vim.fn.line "'\"" <= vim.fn.line "$" then
|
|
vim.api.nvim_exec2("normal! g'\"", {})
|
|
end
|
|
end,
|
|
})
|