Compare commits

..

10 commits

Author SHA1 Message Date
Ching Pei Yang
17d876b0b4
Merge branch 'main' into docs-cleanup-again 2025-05-09 04:44:45 +02:00
Noah765
09f2e1d524
lsp: fix toggleFormatOnSave (#869)
Co-authored-by: Ching Pei Yang <59727193+horriblename@users.noreply.github.com>
Co-authored-by: raf <raf@notashelf.dev>
2025-05-09 01:33:01 +02:00
raf
a1806457ca
Merge pull request #890 from Tebro/eslint_files
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Treewide Checks / Validate flake (push) Waiting to run
Treewide Checks / Check formatting (push) Waiting to run
Treewide Checks / Check source tree for typos (push) Waiting to run
Treewide Checks / Validate documentation builds (push) Waiting to run
Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
Add .eslintrc.cjs as eslint config file option
2025-05-08 18:09:43 +00:00
tebro
edbfc120af Add .eslintrc.cjs as eslint config file option 2025-05-08 20:59:27 +03:00
99f1200c8d
revert "Merge pull request #884 from horriblename/cmp-sources-normal-prio"
Reverts commit d3c7f7125c, reversing
changes made to f07468e13a.
2025-05-06 20:58:31 +03:00
raf
d3c7f7125c
Merge pull request #884 from horriblename/cmp-sources-normal-prio
cmp: use normal priority for default of `sources`
2025-05-06 14:17:27 +00:00
f07468e13a
ci: fix labeler config
Some checks failed
Set up binary cache / cachix (default) (push) Has been cancelled
Set up binary cache / cachix (maximal) (push) Has been cancelled
Set up binary cache / cachix (nix) (push) Has been cancelled
Treewide Checks / Validate flake (push) Has been cancelled
Treewide Checks / Check formatting (push) Has been cancelled
Treewide Checks / Check source tree for typos (push) Has been cancelled
Treewide Checks / Validate documentation builds (push) Has been cancelled
Treewide Checks / Validate hyperlinks in documentation sources (push) Has been cancelled
Treewide Checks / Validate Editorconfig conformance (push) Has been cancelled
Build and deploy documentation / Check latest commit (push) Has been cancelled
Build and deploy documentation / publish (push) Has been cancelled
2025-05-06 12:06:33 +03:00
raf
d330db08e0
Merge pull request #886 from menghaoyu2002/fix/bufferline-indicator-typo
docs: fix typo in nvim-bufferline options description
2025-05-06 09:02:29 +00:00
myu
9e94587102 tabline/bufferline: fix typo in the word "indicator" 2025-05-05 20:02:37 -04:00
Ching Pei Yang
61be6cf405
cmp: use normal priority for default values
After this change, user configs should be "appended" to default ones
instead of overriding them
2025-05-05 22:30:27 +02:00
4 changed files with 7 additions and 6 deletions

2
.github/labels.yml vendored
View file

@ -24,7 +24,7 @@
- any-glob-to-any-file: - any-glob-to-any-file:
- .github/workflows/*.yml - .github/workflows/*.yml
- .github/typos.toml - .github/typos.toml
. .github/dependabot.yml - .github/dependabot.yml
"topic: meta": "topic: meta":
- any: - any:

View file

@ -101,6 +101,7 @@
"eslint.config.js" "eslint.config.js"
"eslint.config.mjs" "eslint.config.mjs"
".eslintrc" ".eslintrc"
".eslintrc.cjs"
".eslintrc.json" ".eslintrc.json"
".eslintrc.js" ".eslintrc.js"
".eslintrc.yml" ".eslintrc.yml"

View file

@ -84,13 +84,13 @@ in {
group = augroup, group = augroup,
buffer = bufnr, buffer = bufnr,
callback = function() callback = function()
if vim.b.disableFormatSave then
return
end
${ ${
if config.vim.lsp.null-ls.enable if config.vim.lsp.null-ls.enable
then '' then ''
if vim.b.disableFormatSave then
return
end
local function is_null_ls_formatting_enabled(bufnr) local function is_null_ls_formatting_enabled(bufnr)
local file_type = vim.api.nvim_buf_get_option(bufnr, "filetype") local file_type = vim.api.nvim_buf_get_option(bufnr, "filetype")
local generators = require("null-ls.generators").get_available( local generators = require("null-ls.generators").get_available(

View file

@ -109,7 +109,7 @@ in {
type = nullOr str; type = nullOr str;
default = null; default = null;
description = '' description = ''
The indicatotor icon to use for the current buffer. The indicator icon to use for the current buffer.
::: {.warning} ::: {.warning}
This **must** be omitted while style is not `icon` This **must** be omitted while style is not `icon`