This commit is contained in:
Hadi
2024-06-27 00:10:09 +02:00
parent 9cf68648eb
commit a9939a0f54
13 changed files with 341 additions and 12 deletions

View File

@@ -25,6 +25,7 @@
./plugins/noice.nix
./plugins/obsidian.nix
./plugins/image.nix
./plugins/ltex.nix
./options.nix
./colorscheme.nix
];

View File

@@ -71,7 +71,7 @@
type = "button";
val = " NixOs Config";
on_press.__raw =
"function() vim.cmd[[e ${config.var.configDirectory}]] end";
"function() vim.cmd[[Neotree ${config.var.configDirectory}]] end";
opts = {
shortcut = "nc";
position = "center";

View File

@@ -11,6 +11,13 @@
tailwindcss.enable = true;
html.enable = true;
svelte.enable = true;
ltex = {
enable = true;
settings = {
enabled = true;
language = "en";
};
};
};
keymaps.lspBuf = {
"gd" = "definition";

View File

@@ -0,0 +1,10 @@
{
programs.nixvim.plugins.ltex-extra = {
enable = true;
settings = {
initCheck = true;
loadLangs = [ "en-US" "fr-FR" ];
logLevel = "non";
};
};
}