Migrate configuration to nixvim
This commit is contained in:
parent
be9fe07ba1
commit
8772a4ca32
18 changed files with 759 additions and 0 deletions
39
config/default.nix
Normal file
39
config/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
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
|
||||
./plugins/lsp/lsp.nix
|
||||
|
||||
# Git
|
||||
./plugins/git/gitsigns.nix
|
||||
./plugins/git/lazygit.nix
|
||||
|
||||
# Utils
|
||||
./plugins/utils/telescope.nix
|
||||
./plugins/utils/whichkey.nix
|
||||
];
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue