mrflos-nixos-config-fork/configs/nvim/lua/plugins/mrflos.lua

33 lines
712 B
Lua
Raw Normal View History

2023-12-21 13:02:24 +00:00
return {
-- add telescope-fzf-native
{
"telescope.nvim",
dependencies = {
"nvim-telescope/telescope-fzf-native.nvim",
build = "cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build",
config = function()
require("telescope").load_extension("fzf")
end,
},
},
-- theme Rosé Pine
{ 'rose-pine/neovim', name = 'rose-pine' },
-- Configure LazyVim to load theme
{
"LazyVim/LazyVim",
opts = {
colorscheme = "rose-pine",
},
}
2023-12-29 19:43:20 +00:00
-- NeoScroll plugin
-- {
-- "karb94/neoscroll.nvim",
-- config = function ()
-- require('neoscroll').setup {}
-- end
-- }
2023-12-21 13:02:24 +00:00
}