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
|
||||
services.xserver = {
|
||||
layout = "us";
|
||||
xkbVariant = "";
|
||||
xkb.layout = "us";
|
||||
xkb.variant = "";
|
||||
};
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
|
|
2
home.nix
2
home.nix
|
@ -83,7 +83,7 @@
|
|||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
enableAutosuggestions = true;
|
||||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
# enableBashCompletion = true;
|
||||
oh-my-zsh = {
|
||||
|
|
26
nixvim.nix
26
nixvim.nix
|
@ -256,10 +256,12 @@
|
|||
};
|
||||
coq-nvim = {
|
||||
enable = true;
|
||||
alwaysComplete = true;
|
||||
autoStart = true;
|
||||
settings = {
|
||||
completion.always = true;
|
||||
auto_start = true;
|
||||
keymap.recommended = true;
|
||||
};
|
||||
installArtifacts = true;
|
||||
recommendedKeymaps = true;
|
||||
};
|
||||
crates-nvim = {
|
||||
enable = true;
|
||||
|
@ -482,13 +484,15 @@
|
|||
};
|
||||
magma-nvim = {
|
||||
enable = true;
|
||||
automaticallyOpenOutput = true;
|
||||
imageProvider = "ueberzug";
|
||||
wrapOutput = true;
|
||||
settings = {
|
||||
automatically_open_output = true;
|
||||
image_provider = "ueberzug";
|
||||
wrap_output = true;
|
||||
};
|
||||
};
|
||||
markdown-preview = {
|
||||
enable = true;
|
||||
autoStart = true;
|
||||
settings.auto_start = true;
|
||||
};
|
||||
navbuddy = {
|
||||
enable = true;
|
||||
|
@ -525,10 +529,10 @@
|
|||
bufLabel = true;
|
||||
};
|
||||
};
|
||||
nvim-cmp = {
|
||||
cmp = {
|
||||
enable = true;
|
||||
autoEnableSources = true;
|
||||
formatting.expandableIndicator = true;
|
||||
# autoEnableSources = true;
|
||||
settings.formatting.expandable_indicator = true;
|
||||
};
|
||||
nvim-colorizer = {
|
||||
enable = true;
|
||||
|
@ -552,6 +556,7 @@
|
|||
};
|
||||
project-nvim = {
|
||||
enable = true;
|
||||
enableTelescope = true;
|
||||
};
|
||||
quickmath = {
|
||||
enable = true;
|
||||
|
@ -593,7 +598,6 @@
|
|||
};
|
||||
fzy-native.enable = true;
|
||||
media_files.enable = true;
|
||||
project-nvim.enable = true;
|
||||
undo.enable = true;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue