test
This commit is contained in:
parent
95d4f8f8a3
commit
9ca526ccab
1 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
{ inputs, pkgs, config, lib, ... }:
|
{ inputs, pkgs, config, lib, ... }: {
|
||||||
let pkgs = "inputs.nixpkgs-unstable"; in {
|
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
];
|
];
|
||||||
|
@ -15,6 +14,12 @@
|
||||||
options = {
|
options = {
|
||||||
number = true;
|
number = true;
|
||||||
shiftwidth = 2;
|
shiftwidth = 2;
|
||||||
|
# Indent wrapped text.
|
||||||
|
breakindent = true;
|
||||||
|
colorcolumn = "100";
|
||||||
|
# This is the default value. `:help cot` to see the available options.
|
||||||
|
completeopt = "menu,preview";
|
||||||
|
cursorline = true;
|
||||||
};
|
};
|
||||||
plugins = {
|
plugins = {
|
||||||
treesitter.enable = true;
|
treesitter.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue