Add words to ltex-ls dictionary
This commit is contained in:
parent
20e042c128
commit
6a7cd29f94
2 changed files with 10 additions and 1 deletions
|
@ -8,6 +8,6 @@ This repository has the Nix home-manager configuration for my laptop, allowing m
|
||||||
- **`flake-parts`** - Makes the Flake modular and reusable
|
- **`flake-parts`** - Makes the Flake modular and reusable
|
||||||
- **`sops`** - Encrypts secrets
|
- **`sops`** - Encrypts secrets
|
||||||
- **`treefmt`** (with Helix integration) - Automatically formats this repository when modifying it, with features to check the flake for formatting consistency
|
- **`treefmt`** (with Helix integration) - Automatically formats this repository when modifying it, with features to check the flake for formatting consistency
|
||||||
- **Language Server Protocol (LSP)** - Has language servers for file formats used in this repository; integrates with Helix text editor
|
- **Language Server Protocol (LSP)** - Has language servers for file formats used in this repository; integrates with Helix text editor and fully managed by Nix
|
||||||
- **AI** - Uses Nix home-manager integrations for Codex and `aichat` for querying Large Language Models (LLMs) in the CLI and in Git repositories
|
- **AI** - Uses Nix home-manager integrations for Codex and `aichat` for querying Large Language Models (LLMs) in the CLI and in Git repositories
|
||||||
- **Language tools** - Checks for grammatical and styling issues using Vale, Harper, LTeX, and Typos
|
- **Language tools** - Checks for grammatical and styling issues using Vale, Harper, LTeX, and Typos
|
||||||
|
|
|
@ -140,6 +140,15 @@
|
||||||
language-server = {
|
language-server = {
|
||||||
ltex-ls-plus = {
|
ltex-ls-plus = {
|
||||||
command = "${pkgs.ltex-ls-plus}/bin/ltex-ls-plus";
|
command = "${pkgs.ltex-ls-plus}/bin/ltex-ls-plus";
|
||||||
|
config = {
|
||||||
|
ltex.dictionary = {
|
||||||
|
en-US = [
|
||||||
|
"Asahi"
|
||||||
|
"LLMs"
|
||||||
|
"LTeX"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
marksman = {
|
marksman = {
|
||||||
command = "${pkgs.marksman}/bin/marksman";
|
command = "${pkgs.marksman}/bin/marksman";
|
||||||
|
|
Loading…
Add table
Reference in a new issue