Skip to content

Commit d607c31

Browse files
committed
🚸 Add g:repl to skip unnecessary neovim plugins
1 parent 02ea48c commit d607c31

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.pre-commit-config.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.6.0
4+
rev: v5.0.0
55
hooks:
66
- id: check-added-large-files
77
- id: fix-byte-order-marker
@@ -37,23 +37,23 @@ repos:
3737
args:
3838
- --msg-filename
3939
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
40-
rev: 2.7.3
40+
rev: 3.0.3
4141
hooks:
4242
- id: editorconfig-checker
4343
- repo: https://github.com/jumanjihouse/pre-commit-hooks
4444
rev: 3.0.0
4545
hooks:
4646
- id: check-mailmap
4747
- repo: https://github.com/rhysd/actionlint
48-
rev: v1.7.1
48+
rev: v1.7.4
4949
hooks:
5050
- id: actionlint
5151
- repo: https://github.com/adrienverge/yamllint
5252
rev: v1.35.1
5353
hooks:
5454
- id: yamllint
5555
- repo: https://github.com/executablebooks/mdformat
56-
rev: 0.7.17
56+
rev: 0.7.19
5757
hooks:
5858
- id: mdformat
5959
additional_dependencies:
@@ -67,18 +67,18 @@ repos:
6767
- mdformat-config
6868
- mdformat-web
6969
- repo: https://github.com/DavidAnson/markdownlint-cli2
70-
rev: v0.13.0
70+
rev: v0.15.0
7171
hooks:
7272
- id: markdownlint-cli2
7373
additional_dependencies:
7474
- markdown-it-texmath
7575
- repo: https://github.com/astral-sh/ruff-pre-commit
76-
rev: v0.6.1
76+
rev: v0.7.4
7777
hooks:
7878
- id: ruff
7979
- id: ruff-format
8080
- repo: https://github.com/kumaraditya303/mirrors-pyright
81-
rev: v1.1.376
81+
rev: v1.1.389
8282
hooks:
8383
- id: pyright
8484
- repo: https://github.com/lunarmodules/luacheck

bin/nvimp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env -S nvim --headless -l
1+
#!/usr/bin/env -S nvim --headless --cmd "let g:repl = 'nvimp'" -l
22
local string = require "string"
33
local package = require "package"
44
local version = string.gsub(_VERSION, ".* ", "")

0 commit comments

Comments
 (0)