editor/config/default.nix

45 lines
875 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
# Import all your configuration modules here
imports = [
# Basics
./basics/options.nix
./basics/keymaps.nix
./basics/colorscheme.nix
# User Interface
./ui/bufferline.nix
./ui/dashboard.nix
./ui/lualine.nix
./ui/neoscroll.nix
./ui/nvim-tree.nix
./ui/telescope.nix
./ui/zen-mode.nix
./ui/undotree.nix
# Vim Improvements
./improvements/repeat.nix
./improvements/surround.nix
./improvements/commentary.nix
# Language
./language/autopairs.nix
./language/colorizer.nix
./language/indents.nix
./language/rainbow-delimiters.nix
# LSP, Treesitter, and Completion
./lsp/cmp.nix
./lsp/copilot.nix
./lsp/lsp.nix
./lsp/treesitter.nix
./lsp/vimtex.nix
# Discord RPC
./presence.nix
# Git Integration
./git/neogit.nix
./git/gitsigns.nix
];
}