Nvim Skull
- Lua 100%
| after/ftplugin | feat: Add zig make command | |
| lua | fix: FFF cannot be built | |
| snippets | feat: Add zig snippets | |
| init.lua | chore: Init commands first so some plugin cannot stop me from removing it | |
| nvim-pack-lock.json | feat: Add conform linter | |
| README.md | chore: Update 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.