1
0
Fork
You've already forked nvim-config
0
A Neovim config, generally for me. https://codeberg.org/bofur/nvim-config
  • Lua 100%
2026年04月23日 13:54:57 -06:00
.github/workflows init updates for adoption refactor 2025年12月08日 23:43:38 -07:00
lua update plugins 2026年04月23日 13:54:57 -06:00
.gitignore init updates for adoption refactor 2025年12月08日 23:43:38 -07:00
.stylua.toml Use call_parentheses 2023年06月16日 21:12:11 -07:00
init.lua refactor: remove old init.lua + rename prototype to fill place 2026年02月08日 11:34:46 -07:00
lazy-lock.json update plugins 2026年04月23日 13:54:57 -06:00
LICENSE.md refactor: plugins into modular folders; add prototype init.lua to test 2026年02月08日 11:14:05 -07:00
README.md docs: try a different nvim badge lol 2026年02月08日 12:14:17 -07:00

bofur/alex.nvim

Alex's Neovim config

Project class: arsenal

Neovim Lua


This is my custom configuration for Neovim, the highly portable and extensible text editor.

A fork of kickstart.nvim

Features

Installation

Dependencies

  • Neovim
  • Basic utils
    • git
    • make
    • unzip
    • gcc (or another compatible C compiler)
  • ripgrep
  • Clipboard tool (xclip/xsel/win32yank or other depending on platform)
  • A Nerd Font: optional, provides various icons
    • If present, set vim.g.have_nerd_font in init.lua to true
  • Development languages/platforms

Install Config

Warning

Consider backing up any existing Neovim configuration(s) on the target machine. Files in the normal Neovim config location may be overwritten.

Neovim's configuration is located under one of the following paths, depending on OS:

OS PATH
Linux, MacOS $XDG_CONFIG_HOME/nvim, ~/.config/nvim
Windows (cmd) %localappdata%\nvim\
Windows (powershell) $env:LOCALAPPDATA\nvim\

Clone

git clone https://github.com/nvim-lua/kickstart.nvim.git ~/.config/nvim

Fork

If forking this repo, replace codeberg.org/bofur/alex.nvim with <SCM_URL>/<USERNAME>/<REPO-NAME>.nvim (or similar) in the commands below, according to the location of the new remote copy.

Tip

Alternatively, use the ccli

Load the Config

Start Neovim using the configuration at ~/.config/nvim/init.lua:

nvim

Or, if the config was cloned into a different directory:

nvim -u /home/bofur/long/strange/path/to/the/config/nvim/init.lua

Resources