Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.

Latest commit

 

History

History
38 lines (31 loc) · 895 Bytes

File metadata and controls

38 lines (31 loc) · 895 Bytes

⚠️ This repo has been archived on GitHub. It can now be found on Codeberg.

Neovim Config

Needed Packages

  • fzf
  • node/npm
  • ripgrep
  • tree-sitter
  • tree-sitter-cli

Optional Packages

  • go (for installing hyprls)
  • fvm (when using flutter)

NPM Packages

  • nodemon

Fonts

Install the fonts from the fonts/ directory to get nice symbols for vim-flog

MacOS

VSCODE launch.json parsing (optional)

If you want to use vscode launch.json parsing and you are using a Apple Silicon Mac, configure cargo as shown down below (cargo needs to be installed of course): Put this into ~/.cargo/config:

[target.x86_64-apple-darwin]
rustflags = [
    "-C", "link-arg=-undefined",
    "-C", "link-arg=dynamic_lookup",
]

[target.aarch64-apple-darwin]
rustflags = [
    "-C", "link-arg=-undefined",
    "-C", "link-arg=dynamic_lookup",
]