mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
21 lines
330 B
Nix
21 lines
330 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
config = {
|
|
# Some general settings.
|
|
globals = {
|
|
mapleader = " ";
|
|
maplocalleader = ",";
|
|
syntax = true;
|
|
};
|
|
|
|
options = {
|
|
encoding = "utf-8";
|
|
completeopt = [ "menuone" "noselect" ];
|
|
expandtab = true;
|
|
shiftwidth = 4;
|
|
tabstop = 4;
|
|
};
|
|
};
|
|
}
|