nvim.nix/config/default.nix

40 lines
769 B
Nix
Raw Normal View History

2024-08-08 09:58:48 +08:00
{...}: {
2024-08-04 21:19:37 +08:00
imports = [
# General configuration.
./keymaps.nix
./options.nix
# Themes
./plugins/themes/default.nix
# Completion
./plugins/cmp/cmp.nix
# Snippets
./plugins/snippets/luasnip.nix
# Editor plugins and configurations
./plugins/editor/bufdelete.nix
./plugins/editor/comment.nix
./plugins/editor/neo-tree.nix
./plugins/editor/treesitter.nix
# UI plugins
./plugins/ui/lualine.nix
# LSP and formatting
2024-08-08 09:50:00 +08:00
./plugins/lsp/conform.nix
2024-08-04 21:19:37 +08:00
./plugins/lsp/lsp.nix
# Git
2024-08-07 14:24:44 +08:00
./plugins/git/fugitive.nix
2024-08-04 21:19:37 +08:00
./plugins/git/gitsigns.nix
./plugins/git/lazygit.nix
# Utils
2024-08-05 08:57:03 +08:00
./plugins/utils/markdown-preview.nix
2024-08-04 21:19:37 +08:00
./plugins/utils/telescope.nix
./plugins/utils/whichkey.nix
];
}