feat: add bootstrap module and update docs
- Add lua/bootstrap.lua: redirects Neovim data/state paths when running
as root (e.g. via symlinked ~/.config/nvim) to prevent root sessions
from conflicting with the user-level install
- Update init.lua to require("bootstrap") before any other module
- Standardize license headers across all Lua files (capitalize author,
add SPDX-License-Identifier)
- Update README with full plugin stack section, bootstrap docs,
machine-local override docs, qalculate dependency, and blink.cmp
auto-rebuild note
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
-- ╭─────────────────────────────────────────────────────────╮
|
||||
-- │ Bootstaps │
|
||||
-- ╰─────────────────────────────────────────────────────────╯
|
||||
|
||||
---- Copyright (C) 2026 Rootiest
|
||||
-- SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
-- This file is sourced before anything else so it can be used to set up
|
||||
-- the runtime path and other fundamental settings.
|
||||
|
||||
-- ─────────────── Manage root user permissions for Neovim ───────────────
|
||||
|
||||
-- Redirect data directories if running as root to avoid permission issues
|
||||
if os.getenv("USER") == "root" or os.getenv("SUDO_USER") ~= nil then
|
||||
local root_data = "/root/.local/share/nvim-root"
|
||||
vim.opt.packpath:prepend(root_data .. "/site")
|
||||
vim.opt.runtimepath:prepend(root_data .. "/site")
|
||||
-- Prevent root from writing shada to your user home
|
||||
vim.opt.shadafile = "/root/.local/state/nvim-root.shada"
|
||||
end
|
||||
@@ -4,6 +4,9 @@
|
||||
└────────────────────────────────────────────────────────────────┘
|
||||
--]]
|
||||
|
||||
-- Copyright (C) 2026 Rootiest
|
||||
-- SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
local M = {}
|
||||
|
||||
--- Dashboard Header
|
||||
|
||||
+2
-14
@@ -4,20 +4,8 @@
|
||||
└────────────────────────────────────────────────────────────────┘
|
||||
--]]
|
||||
|
||||
-- Copyright (C) 2026 rootiest
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
---- Copyright (C) 2026 Rootiest
|
||||
-- SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
-- System Clipboard Integration
|
||||
-- This makes 'y' and 'p' (and all other yank/paste operations)
|
||||
|
||||
+2
-14
@@ -4,20 +4,8 @@
|
||||
└────────────────────────────────────────────────────────────────┘
|
||||
--]]
|
||||
|
||||
-- Copyright (C) 2026 rootiest
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
---- Copyright (C) 2026 Rootiest
|
||||
-- SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
-- ╭─────────────────────────────────────────────────────────╮
|
||||
-- │ Basic Options │
|
||||
|
||||
+2
-14
@@ -4,20 +4,8 @@
|
||||
└────────────────────────────────────────────────────────────────┘
|
||||
--]]
|
||||
|
||||
-- Copyright (C) 2026 rootiest
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
---- Copyright (C) 2026 Rootiest
|
||||
-- SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
-- Catppuccin.nvim
|
||||
-- Eagerly load the colorscheme plugin.
|
||||
|
||||
Reference in New Issue
Block a user