vimPlugins: update on 2025-09-26
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1586,6 +1586,7 @@ assertNoAdditions {
|
||||
# attempt to index global 'LazyVim' (a nil value)
|
||||
"lazyvim.config.keymaps"
|
||||
"lazyvim.plugins.extras.ai.tabnine"
|
||||
"lazyvim.plugins.extras.ai.copilot-native"
|
||||
"lazyvim.plugins.extras.coding.blink"
|
||||
"lazyvim.plugins.extras.coding.luasnip"
|
||||
"lazyvim.plugins.extras.coding.neogen"
|
||||
@@ -1652,6 +1653,7 @@ assertNoAdditions {
|
||||
checkInputs = with self; [
|
||||
snacks-nvim
|
||||
telescope-nvim
|
||||
mini-nvim
|
||||
];
|
||||
dependencies = with self; [
|
||||
nui-nvim
|
||||
@@ -1676,6 +1678,7 @@ assertNoAdditions {
|
||||
"leetcode.picker.question.init"
|
||||
"leetcode.picker.question.snacks"
|
||||
"leetcode.picker.question.telescope"
|
||||
"leetcode.picker.question.mini"
|
||||
"leetcode.picker.tabs.fzf"
|
||||
"leetcode.runner.init"
|
||||
"leetcode-plugins.cn.api"
|
||||
@@ -2351,6 +2354,7 @@ assertNoAdditions {
|
||||
nvim-lspconfig
|
||||
telescope-nvim
|
||||
nvim-treesitter
|
||||
nvchad-ui
|
||||
];
|
||||
nvimSkipModules = [
|
||||
# Requires global config setup
|
||||
@@ -3904,7 +3908,7 @@ assertNoAdditions {
|
||||
# https://github.com/fisadev/vim-isort/pull/41
|
||||
dontCheckForBrokenSymlinks = true;
|
||||
postPatch = ''
|
||||
substituteInPlace ftplugin/python_vimisort.vim \
|
||||
substituteInPlace autoload/vimisort.vim \
|
||||
--replace-fail 'import vim' 'import vim; import sys; sys.path.append("${python3.pkgs.isort}/${python3.sitePackages}")'
|
||||
'';
|
||||
};
|
||||
|
||||
@@ -1,15 +1,5 @@
|
||||
diff --git a/chadtree/__main__.py b/chadtree/__main__.py
|
||||
index 83341fc..af8c9b0 100644
|
||||
--- a/chadtree/__main__.py
|
||||
+++ b/chadtree/__main__.py
|
||||
@@ -73,7 +73,7 @@ _EXEC_PATH = Path(executable)
|
||||
_EXEC_PATH = _EXEC_PATH.parent.resolve(strict=True) / _EXEC_PATH.name
|
||||
_REQ = REQUIREMENTS.read_text()
|
||||
|
||||
-_IN_VENV = _RT_PY == _EXEC_PATH
|
||||
+_IN_VENV = True
|
||||
|
||||
|
||||
if command == "deps":
|
||||
@@ -129,7 +129,7 @@ elif command == "run":
|
||||
try:
|
||||
@@ -27,13 +17,13 @@ index e2d3aa0..e77a129 100644
|
||||
@@ -1,4 +1,5 @@
|
||||
from os import environ, name
|
||||
+from pathlib import Path
|
||||
|
||||
|
||||
from chad_types import TOP_LEVEL
|
||||
|
||||
|
||||
@@ -24,7 +25,7 @@ SETTINGS_VAR = "chadtree_settings"
|
||||
STORAGE
|
||||
"""
|
||||
|
||||
|
||||
-_VARS = TOP_LEVEL / ".vars"
|
||||
+_VARS = Path.home() / ".cache/chadtree/vars"
|
||||
RT_DIR = _VARS / "runtime"
|
||||
|
||||
Reference in New Issue
Block a user