Personal, but not too original, Neovim configuration
Go to file
Hoang Nguyen 0f01c172ff
Rewrite the little Go program
- Use Cobra instead of Magefile
- Use Neovim's Go client library to get the data and config
  directories. This is more reliable than guessing from XDG variables
  then falling back to $HOME.
2024-01-31 00:00:00 +07:00
after Various improvements that I'm too lazy to list :) 2023-12-24 00:00:00 +07:00
colors Initial commit 2023-10-28 00:00:00 +07:00
lua/user Rewrite the little Go program 2024-01-31 00:00:00 +07:00
scripts/pkg-install Rewrite the little Go program 2024-01-31 00:00:00 +07:00
spell Initial commit 2023-10-28 00:00:00 +07:00
.gitignore Rewrite the little Go program 2024-01-31 00:00:00 +07:00
.luarc.json Add neo-tree.nvim as an option for filetree_provider (beside nvim-tree.lua) 2024-01-21 00:00:00 +07:00
.stylua.toml Initial commit 2023-10-28 00:00:00 +07:00
LICENSE Update LICENSE text 2023-11-25 00:00:00 +07:00
README.md Rewrite the little Go program 2024-01-31 00:00:00 +07:00
filetype.lua Add nvim-dap-repl-highlights plugin 2024-01-06 00:00:00 +07:00
go.mod Rewrite the little Go program 2024-01-31 00:00:00 +07:00
go.sum Rewrite the little Go program 2024-01-31 00:00:00 +07:00
init.lua Add neo-tree.nvim as an option for filetree_provider (beside nvim-tree.lua) 2024-01-21 00:00:00 +07:00
lazy-lock.json Rewrite the little Go program 2024-01-31 00:00:00 +07:00
pkgs.yaml Add neo-tree.nvim as an option for filetree_provider (beside nvim-tree.lua) 2024-01-21 00:00:00 +07:00

README.md

FollieHiyuki's Neovim configuration

This Neovim config used to live within my dotfiles. Due to the complexity of refactoring both regular files/templates and this Lua codebase, I decided to move it into its own repository. As such, this project stays under the same license as my dotfiles, MIT.

TODO

Colorschemes

  • OneDark
  • Catpuccin

Missing tree-sitter parsers

Additional DAP/LSP servers

More plugins

Logic

  • Smooth colorschemes changing (dynamic highlight groups registration via event hooks)
  • Neorocks looks cool :)

FAQ

Why not using mason.nvim?

Most things installed via mason.nvim are binaries linked to glibc, which are incompatible to run on the Linux distribution I use - AlpineLinux. I resolved to custom Go program instead. The code is pretty simple and naive, but it works for me.

External LSP servers that can't be installed directly from AlpineLinux's repositories, or with simple cargo/go install commands, are defined inside pkgs.yaml file.