From cd80d074b4f53493cbfa8b7c9a19448883aa3dbc Mon Sep 17 00:00:00 2001 From: ray Date: Mon, 8 Dec 2025 01:07:06 +0000 Subject: [PATCH] activate legacy colour scheme --- lua/plugins/colorscheme.lua | 13 +++++++++++++ paper-tonic | 1 + 2 files changed, 14 insertions(+) create mode 100644 lua/plugins/colorscheme.lua create mode 120000 paper-tonic diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..bf224e8 --- /dev/null +++ b/lua/plugins/colorscheme.lua @@ -0,0 +1,13 @@ +-- Paper Tonic colorscheme +-- Local plugin via symlink + +return { + { + dir = vim.fn.expand('~/.config/nvim/paper-tonic'), + lazy = false, -- Load immediately on startup + priority = 1000, -- Load before other plugins + config = function() + vim.cmd.colorscheme('paper-tonic') + end, + }, +} diff --git a/paper-tonic b/paper-tonic new file mode 120000 index 0000000..dbe9322 --- /dev/null +++ b/paper-tonic @@ -0,0 +1 @@ +/home/ray/projects/nvim-paper-tonic \ No newline at end of file