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
|
2025-04-01 10:53:48 +02:00
|
|
|
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
|
2023-11-20 22:42:11 +01:00
|
|
|
- ripgrep (https://github.com/BurntSushi/ripgrep, used by telescope)
|
|
|
|
|
- fd (https://github.com/sharkdp/fd, used by telescope)
|
2024-10-22 10:46:13 +02:00
|
|
|
- A Nerd font (https://www.nerdfonts.com/, used by various plugins)
|
2024-01-20 23:12:18 +01:00
|
|
|
|
2025-03-16 11:08:21 +01:00
|
|
|
NOTE: EXTERNAL DEPENDENCIES FREEBSD
|
|
|
|
|
- cmake, ripgrep (pkg install <pkgname>)
|
|
|
|
|
|
2025-09-19 14:15:49 +02:00
|
|
|
NOTE: EXTERNAL DEPENDENCIES LINUX (Arch)
|
|
|
|
|
- cmake, tree-sitter-cli, nodejs (pacman -S <pkgname>)
|
|
|
|
|
|
|
|
|
|
Make fzf work:
|
|
|
|
|
1. Go to ~/.local/share/nvim/lazy/telescope-fzf-native.nvim
|
|
|
|
|
2. Run `make`
|
|
|
|
|
|
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
|
|
|
|
|
- ripgrep (https://github.com/BurntSushi/ripgrep, used by telescope)
|
|
|
|
|
- fd (https://github.com/sharkdp/fd, used by telescope)
|
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
|
2025-04-18 22:19:06 +02:00
|
|
|
- make, mingw (MartinStorsjo.LLVM-MinGW.MSVCRT), cmake (https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation)
|
2025-04-18 23:03:51 +02:00
|
|
|
Then run "mingw32-make.exe" in your users telescope-fzf-native plugin directory:
|
2024-01-20 23:12:18 +01:00
|
|
|
C:\Users\foobar\AppData\Local\nvim-data\lazy\telescope-fzf-native.nvim
|
2023-11-20 22:42:11 +01:00
|
|
|
--]]
|
|
|
|
|
|
2025-04-01 10:53:48 +02:00
|
|
|
-- Include my custom configuration
|
2023-11-20 22:42:11 +01:00
|
|
|
require("weeheavy")
|