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

21 lines
330 B
Nix
Raw Normal View History

2024-02-04 12:50:54 +00:00
{ config, lib, ... }:
{
config = {
# Some general settings.
globals = {
mapleader = " ";
maplocalleader = ",";
syntax = true;
};
options = {
encoding = "utf-8";
completeopt = [ "menuone" "noselect" ];
expandtab = true;
shiftwidth = 4;
tabstop = 4;
};
};
}