Bohdan's terminal configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

automatic file reload on change

+6
+6
nvim/.config/nvim/lua/options.lua
··· 4 4 5 5 -- local o = vim.o 6 6 -- o.cursorlineopt ='both' -- to enable cursorline! 7 + vim.o.autoread = true 8 + vim.api.nvim_create_autocmd({ "CursorHold", "FocusGained" }, { 9 + pattern = "*", 10 + command = "checktime", 11 + }) 12 +