mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
rename options
This commit is contained in:
parent
5cb5d5de84
commit
c5ef757877
3 changed files with 18 additions and 14 deletions
|
@ -145,8 +145,8 @@ networking = {
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
layout = "us";
|
xkb.layout = "us";
|
||||||
xkbVariant = "";
|
xkb.variant = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
|
|
2
home.nix
2
home.nix
|
@ -83,7 +83,7 @@
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
enableAutosuggestions = true;
|
autosuggestion.enable = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
# enableBashCompletion = true;
|
# enableBashCompletion = true;
|
||||||
oh-my-zsh = {
|
oh-my-zsh = {
|
||||||
|
|
26
nixvim.nix
26
nixvim.nix
|
@ -256,10 +256,12 @@
|
||||||
};
|
};
|
||||||
coq-nvim = {
|
coq-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alwaysComplete = true;
|
settings = {
|
||||||
autoStart = true;
|
completion.always = true;
|
||||||
|
auto_start = true;
|
||||||
|
keymap.recommended = true;
|
||||||
|
};
|
||||||
installArtifacts = true;
|
installArtifacts = true;
|
||||||
recommendedKeymaps = true;
|
|
||||||
};
|
};
|
||||||
crates-nvim = {
|
crates-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -482,13 +484,15 @@
|
||||||
};
|
};
|
||||||
magma-nvim = {
|
magma-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
automaticallyOpenOutput = true;
|
settings = {
|
||||||
imageProvider = "ueberzug";
|
automatically_open_output = true;
|
||||||
wrapOutput = true;
|
image_provider = "ueberzug";
|
||||||
|
wrap_output = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
markdown-preview = {
|
markdown-preview = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoStart = true;
|
settings.auto_start = true;
|
||||||
};
|
};
|
||||||
navbuddy = {
|
navbuddy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -525,10 +529,10 @@
|
||||||
bufLabel = true;
|
bufLabel = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
nvim-cmp = {
|
cmp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoEnableSources = true;
|
# autoEnableSources = true;
|
||||||
formatting.expandableIndicator = true;
|
settings.formatting.expandable_indicator = true;
|
||||||
};
|
};
|
||||||
nvim-colorizer = {
|
nvim-colorizer = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -552,6 +556,7 @@
|
||||||
};
|
};
|
||||||
project-nvim = {
|
project-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
enableTelescope = true;
|
||||||
};
|
};
|
||||||
quickmath = {
|
quickmath = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -593,7 +598,6 @@
|
||||||
};
|
};
|
||||||
fzy-native.enable = true;
|
fzy-native.enable = true;
|
||||||
media_files.enable = true;
|
media_files.enable = true;
|
||||||
project-nvim.enable = true;
|
|
||||||
undo.enable = true;
|
undo.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue