Files
nixos-config/home/programs/neovim/init.lua
2025-02-18 20:00:42 +01:00

63 lines
1.1 KiB
Lua

vim.g.mapleader = " "
require("lazy").setup({
spec = {
-- Import plugins from lua/plugins
{ import = "plugins" },
},
performance = {
reset_packpath = false,
rtp = {
reset = false,
},
},
dev = {
path = "@path@/pack/myNeovimPackages/start",
patterns = {
"folke",
"geodimm",
"Julian",
"hrsh7th",
"neovim",
"rafamadriz",
"saadparwaiz1",
"L3MON4D3",
"onsails",
"nvim-lua",
"Olical",
"PaterJason",
"iamcco",
"nvim-treesitter",
"HiPhish",
"lervag",
"windwp",
"kylechui",
"numToStr",
"JoosepAlviste",
"stevearc",
"nvim-tree",
"tpope",
"karb94",
"akinsho",
"nvim-lualine",
"arkav",
"nvimdev",
"ggandor",
"Bekaboo",
"nvim-telescope",
"aserowy",
"3rd",
"epwalsh",
"preservim",
"elkowar",
"dynamotn",
"LhKipp",
"Fanael",
},
},
install = {
-- Safeguard in case we forget to install a plugin with Nix
missing = false,
},
})
require("config/options")