mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
Init:start-nix
This commit is contained in:
61
home/tui/nixvim/nixvim.nix
Normal file
61
home/tui/nixvim/nixvim.nix
Normal file
@@ -0,0 +1,61 @@
|
||||
{inputs, ...}: {
|
||||
imports = [inputs.nixvim.homeManagerModules.nixvim];
|
||||
programs.nixvim = {
|
||||
colorschemes = {
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
settings = {
|
||||
background = {
|
||||
dark = "mocha";
|
||||
light = "macchiato";
|
||||
};
|
||||
flavour = "mocha";
|
||||
integrations = {
|
||||
cmp = true;
|
||||
fidget = true;
|
||||
lsp_trouble = true;
|
||||
mini.enabled = true;
|
||||
native_lsp = {
|
||||
enabled = true;
|
||||
inlay_hints = {
|
||||
background = true;
|
||||
};
|
||||
underlines = {
|
||||
errors = ["underline"];
|
||||
hints = ["underline"];
|
||||
information = ["underline"];
|
||||
warnings = ["underline"];
|
||||
};
|
||||
virtual_text = {
|
||||
errors = ["italic"];
|
||||
hints = ["italic"];
|
||||
information = ["italic"];
|
||||
ok = ["italic"];
|
||||
warnings = ["italic"];
|
||||
};
|
||||
};
|
||||
neotree = true;
|
||||
noice = true;
|
||||
notify = true;
|
||||
telescope.enabled = true;
|
||||
treesitter = true;
|
||||
treesitter_context = true;
|
||||
which_key = true;
|
||||
};
|
||||
transparent_background = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
defaultEditor = true;
|
||||
enable = true;
|
||||
enableMan = false;
|
||||
globals = {
|
||||
have_nerd_font = true;
|
||||
mapleader = " ";
|
||||
maplocalleader = " ";
|
||||
};
|
||||
performance = {
|
||||
combinePlugins.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user