mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
30 lines
514 B
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;
|
|
};
|
|
};
|
|
}
|