mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Migrating some doom emacs to nvchad
This commit is contained in:
parent
f975867a81
commit
29eacd05bb
12 changed files with 353 additions and 3 deletions
42
user/app/nvim/lua/plugins/init.lua
Normal file
42
user/app/nvim/lua/plugins/init.lua
Normal file
|
@ -0,0 +1,42 @@
|
|||
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",
|
||||
"html", "css"
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make', lazy = false, },
|
||||
{ 'nvim-telescope/telescope-project.nvim', lazy = false, },
|
||||
{ 'natecraddock/workspaces.nvim', lazy = false, },
|
||||
|
||||
{
|
||||
"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
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue