nixos-config/configs/nixvim/trovebelt/default.nix
Gabriel Arazas 5fd2dcb077
nixvimConfigs/trovebelt/setups/debugging: init
We'll have more configs and setups for this one.
2024-02-06 21:13:44 +08:00

30 lines
517 B
Nix

{ config, lib, ... }:
{
imports = [ ./modules ];
config = {
nixvimConfigs.trovebelt.setups = {
debugging.enable = true;
lsp.enable = true;
treesitter.enable = true;
ui.enable = true;
};
# Some general settings.
globals = {
mapleader = " ";
maplocalleader = ",";
syntax = true;
};
options = {
encoding = "utf-8";
completeopt = [ "menuone" "noselect" ];
expandtab = true;
shiftwidth = 4;
tabstop = 4;
};
};
}