Nvim Skull
- Lua 100%
| after/ftplugin | ||
| lua | ||
| snippets | ||
| init.lua | ||
| nvim-pack-lock.json | ||
| README.md | ||
Nvim Skull
A skull-ahh neovim config, barebones.
Built on Neovim's native tooling — vim.pack for plugins, vim.lsp for
language servers, and the built-in treesitter — with [mini.nvim] doing most of
the heavy lifting on top.
Layout
.
├── init.lua -- entry point, loads modules + colorscheme
├── nvim-pack-lock.json -- pinned plugin revisions
└── lua/
├── pack.lua -- plugin list + setup
├── options.lua -- editor options
├── keymaps.lua -- keybindings
├── commands.lua -- plugin management commands
├── lsp.lua -- LSP servers + format-on-save
├── treesitter.lua -- parser install + highlighting
└── after/ -- per-filetype overrides
Each module is self-contained — edit a file to change that part of the config. For the exact plugins, keymaps, and language servers, read the relevant module.