neovim/init.lua

25 lines
1 KiB
Lua
Raw Normal View History

2023-11-20 22:42:11 +01:00
--[[
My simple Neovim configuration. Made from scratch, inspired by
https://www.youtube.com/watch?v=w7i4amO_zaE
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)
2023-11-21 13:29:49 +01:00
- A Nerd font (https://www.nerdfonts.com/, used by nvim-web-devicons)
2024-01-20 23:12:18 +01:00
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)
- A Nerd font (https://www.nerdfonts.com/, used by nvim-web-devicons)
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
- make, mingw, cmake (https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation)
2024-01-22 22:51:19 +01:00
Then run "make" 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
--]]
2023-11-21 10:31:02 +01:00
-- Include customized configuration
2023-11-20 22:42:11 +01:00
require("weeheavy")