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

30 lines
514 B
Nix
Raw Normal View History

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