nixos-config/configs/nixvim/trovebelt/default.nix

30 lines
514 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;
};
opts = {
encoding = "utf-8";
completeopt = [ "menuone" "noselect" ];
expandtab = true;
shiftwidth = 4;
tabstop = 4;
};
};
}