neovim/init.lua

26 lines
904 B
Lua
Raw Normal View History

2023-11-20 22:42:11 +01:00
--[[
2024-10-22 10:46:13 +02:00
My simple(TM) Neovim configuration. Made from scratch, inspired by
2023-11-20 22:42:11 +01:00
https://www.youtube.com/watch?v=w7i4amO_zaE
Later on, switched to native LSP setup with the help of
https://gpanders.com/blog/whats-new-in-neovim-0-11/
2023-11-20 22:42:11 +01:00
2024-03-05 21:26:01 +01:00
NOTE: EXTERNAL DEPENDENCIES MACOS
2024-10-22 10:46:13 +02:00
- A Nerd font (https://www.nerdfonts.com/, used by various plugins)
2026-04-23 11:23:17 +02:00
- tree-sitter-cli (brew install <pkgname>)
2024-01-20 23:12:18 +01:00
2025-03-16 11:08:21 +01:00
NOTE: EXTERNAL DEPENDENCIES FREEBSD
2026-04-23 11:23:17 +02:00
- cmake, tree-sitter-cli, ripgrep (pkg install <pkgname>)
2025-03-16 11:08:21 +01:00
2025-09-19 14:15:49 +02:00
NOTE: EXTERNAL DEPENDENCIES LINUX (Arch)
- cmake, tree-sitter-cli, nodejs (pacman -S <pkgname>)
2024-03-05 21:26:01 +01:00
NOTE: EXTERNAL DEPENDENCIES WINDOWS
2024-01-20 23:12:18 +01:00
See https://blog.nikfp.com/how-to-install-and-set-up-neovim-on-windows
2024-10-22 10:46:13 +02:00
- A Nerd font (https://www.nerdfonts.com/, used by various plugins)
2024-01-22 22:28:47 +01:00
- nodejs-lts (used for npm to install prettier)
- then run "npm i -g npm"
2024-01-20 23:12:18 +01:00
- zig, wget, unzip, git, fzf
2023-11-20 22:42:11 +01:00
--]]
-- Include my custom configuration
2023-11-20 22:42:11 +01:00
require("weeheavy")