neovim/init.lua

23 lines
966 B
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-01-20 23:12:18 +01:00
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
EXTERNAL DEPENDENCIES WINDOWS
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)
- zig, wget, unzip, git, fzf
- make, mingw, cmake (https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation)
Then run "make" in your users telescope-fzf-native plugin directory (e.g.
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")