nix/nixvim/config/default.nix

20 lines
277 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 15:34:57 +02:00
# language support & lsp
./lsp.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
}