From 1d69673e62cc5072543476f08df3f3432239d6d9 Mon Sep 17 00:00:00 2001 From: voidarc Date: Sun, 22 Mar 2026 11:37:00 +0000 Subject: [PATCH] added scrolloff for end of file and blogging stuff --- lua/plugins/functional/neorg.lua | 2 ++ lua/plugins/functional/scrolleof.lua | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 lua/plugins/functional/scrolleof.lua diff --git a/lua/plugins/functional/neorg.lua b/lua/plugins/functional/neorg.lua index cfdd535..d9d4978 100644 --- a/lua/plugins/functional/neorg.lua +++ b/lua/plugins/functional/neorg.lua @@ -31,6 +31,7 @@ return { config = { workspaces = { notes = "~/Notes", + site = "~/Documents/voidarc/content/", }, default_workspace = "notes", }, @@ -74,6 +75,7 @@ return { vim.keymap.set("i", "", "(neorg.itero.next-iteration)", { buffer = true }) vim.keymap.set("n", "m", "Neorg inject-metadata", { buffer = true }) vim.keymap.set("n", "f", "Telescope neorg insert_link", { buffer = true }) + vim.opt.colorcolumn = "140" end, }) end, diff --git a/lua/plugins/functional/scrolleof.lua b/lua/plugins/functional/scrolleof.lua new file mode 100644 index 0000000..f9093b7 --- /dev/null +++ b/lua/plugins/functional/scrolleof.lua @@ -0,0 +1,5 @@ +return { + "Aasim-A/scrollEOF.nvim", + event = { "CursorMoved", "WinScrolled" }, + opts = {}, +}