nix/nixvim/config/default.nix

25 lines
365 B
Nix
Raw Normal View History

2024-07-27 11:08:16 +02:00
{
# Import all your configuration modules here
2024-07-27 13:29:25 +02:00
imports = [
2024-07-27 15:34:57 +02:00
# base config
2024-07-27 15:14:21 +02:00
./options.nix
./clipboard.nix
2024-07-27 15:28:21 +02:00
2024-07-27 15:34:57 +02:00
# appearence
2024-07-27 15:14:21 +02:00
./bufferline.nix
2024-07-27 15:28:21 +02:00
./lualine.nix
2024-07-27 20:02:17 +02:00
# file and search utilities
2024-07-27 18:18:33 +02:00
./telescope.nix
2024-07-27 20:02:17 +02:00
./oil.nix
2024-07-27 15:34:57 +02:00
# language support & lsp
./lsp.nix
2024-07-27 20:09:00 +02:00
./treesitter.nix
2024-07-27 15:34:57 +02:00
./nix.nix
2024-07-27 16:14:49 +02:00
# autocompletion
./cmp.nix
2024-07-27 13:29:25 +02:00
];
2024-07-27 11:08:16 +02:00
}