1
0
Fork
You've already forked nvim
0
my neovim config
  • Lua 98.2%
  • Dockerfile 1.1%
  • Just 0.7%
Find a file
2026年05月17日 15:00:45 +03:00
.github/workflows chore(github): create the docker workflow 2026年05月17日 14:03:36 +03:00
colors refactor: vendor the theme 2026年05月17日 13:23:36 +03:00
lua fix: move snippets.lua to lua/ 2026年05月17日 15:00:45 +03:00
spell feat: create the base 2024年09月10日 14:18:09 +03:00
Dockerfile feat: docker 2026年05月17日 13:58:45 +03:00
init.lua feat: update which-key konfigs 2026年05月17日 13:37:56 +03:00
justfile chore(justfile): add update-gruvbox recipe 2026年05月17日 13:24:11 +03:00
lazy-lock.json refactor: vendor the theme 2026年05月17日 13:23:36 +03:00
LICENSE chore(license): add the license 2026年05月17日 14:24:15 +03:00
readme.txt docs(readme): meow 2026年05月17日 14:21:54 +03:00
snippets.lua minify the configs 2026年01月03日 01:11:02 +02:00

 ___ _ 
 / _ | ___ ___ ____ ___ _ __(_)_ _ 
 / __ |/ _ \/ _ `(_-<_ / _ \ |/ / / ' \
/_/ |_/_//_/\_,_/___(_)_//_/___/_/_/_/_/
 Your cozy Neovim setup, ready in seconds.
 Gruvbox'd, lazy-loaded, and containerized for any env.
Zero-effort Neovim with lualine, telescope, nvim-cmp, gitsigns,
oil.nvim, leap.nvim, conform, todo-comments, and more —
all pre-installed and configured.
Pick your poison — Docker (zero deps, works everywhere)
or native install on your machine.
---------------
 MANUAL INSTALL
---------------
1. Install Neovim 0.11+ and deps
 # Arch
 sudo pacman -S neovim git ripgrep lua-format
 # macOS
 brew install neovim git ripgrep lua-format
 # Debian/Ubuntu — get a recent nvim first, then
 sudo apt install git ripgrep lua-formatter-ng
2. Clone & link the config
 git clone https://github.com/0x61nas/dotfiles ~/dotfiles
 mkdir -p ~/.config
 ln -sf ~/dotfiles/home/.config/nvim ~/.config/nvim
3. Open nvim — plugins install themselves
 nvim
4. (Optional) Build native extensions for better perf
 cd ~/.local/share/nvim/lazy/telescope-fzf-native.nvim && make
 cd ~/.local/share/nvim/lazy/LuaSnip && make install_jsregexp
---------------
 DOCKER IMAGE
---------------
Pre-built (fastest):
 docker pull ghcr.io/0x61nas/nvim:latest
 docker pull anaselgarhy/nvim:latest
 docker run --rm -it ghcr.io/0x61nas/nvim
 docker run --rm -it -v "$(pwd):/workspace" ghcr.io/0x61nas/nvim
Build from source:
 docker build -t anas-nvim .
 docker run --rm -it anas-nvim
Done.