blob: 79756d6a52f95dba5add333167f75e8513750387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{pkgs, ...}: {
imports = [
./plugins
./keymaps.nix
];
config = {
clipboard.providers.wl-copy.enable = pkgs.stdenv.isLinux;
colorschemes.catppuccin = {
enable = true;
flavour = "mocha";
disableItalic = true;
};
enableMan = false;
globals = {
mapleader = ",";
};
options = {
shiftwidth = 2;
tabstop = 2;
smartindent = true;
wrap = true;
syntax = "on";
termguicolors = true;
};
};
}
|