nixos-config/user/app/nvim/lua/plugins/init.lua

53 lines
1.2 KiB
Lua
Raw Normal View History

2024-09-15 07:01:57 +05:30
return {
{
"stevearc/conform.nvim",
-- event = 'BufWritePre', -- uncomment for format on save
opts = require "configs.conform",
},
-- These are some examples, uncomment them if you want to see them work!
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
},
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"vim", "lua", "vimdoc",
2024-09-17 08:16:12 +05:30
"html", "css", 'gdscript'
2024-09-15 07:01:57 +05:30
},
},
},
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make', lazy = false, },
{ 'nvim-telescope/telescope-project.nvim', lazy = false, },
{ 'natecraddock/workspaces.nvim', lazy = false, },
2024-09-28 21:13:27 +05:30
{ 'jghauser/follow-md-links.nvim', lazy = false, },
2024-09-15 07:01:57 +05:30
{
"NeogitOrg/neogit",
lazy = false,
dependencies = {
"nvim-lua/plenary.nvim", -- required
"sindrets/diffview.nvim", -- optional - Diff integration
-- Only one of these is needed.
"nvim-telescope/telescope.nvim", -- optional
},
config = true
},
2024-09-28 21:13:27 +05:30
{
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup({})
end,
},
2024-09-15 07:01:57 +05:30
}