-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappearance.nix
61 lines (57 loc) · 1.35 KB
/
appearance.nix
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
programs.nixvim.plugins = {
# Statusline
lualine = {
enable = true;
settings = {
extensions = [
"fzf"
"nvim-dap-ui"
"symbols-outline"
"trouble"
"neo-tree"
"quickfix"
"fugitive"
];
component_separators.left = null;
component_separators.right = null;
sections = {
lualine_a = [ "mode" ];
lualine_b = [
"branch"
"filename"
];
lualine_c = [
"diff"
"diagnostics"
];
lualine_x = [
"encoding"
"fileformat"
"filetype"
];
lualine_y = [ "progress" ];
lualine_z = [ "location" ];
};
inactive_sections = {
lualine_a = [ "filename" ];
lualine_b = [ ];
lualine_c = [ "diagnostics" ];
lualine_x = [ ];
lualine_y = [ ];
lualine_z = [ "location" ];
};
};
};
# Line indentation markers
indent-blankline.enable = true;
# Rainbow parentheses
rainbow-delimiters.enable = true;
# Status updates for LSP progress in right bottom corner.
fidget.enable = true;
# Show colors
colorizer.enable = true;
# Breadcrumbs
# TODO navic.enable = true; or dropbar?
};
}