update nvim python support

This commit is contained in:
Alexander Navarro 2024-06-27 15:01:58 -04:00
parent 6b2e261d8c
commit 9245b7b823
3 changed files with 3 additions and 1 deletions

View file

@ -13,7 +13,7 @@ return {
javascriptreact = { "eslint_d" }, javascriptreact = { "eslint_d" },
typescriptreact = { "eslint_d" }, typescriptreact = { "eslint_d" },
-- astro = { "eslint_d" }, -- astro = { "eslint_d" },
python = { "pyright" }, python = { "pylint" },
sh = { "shellcheck" }, sh = { "shellcheck" },
NeogitCommitMessage = { "gitlint" }, NeogitCommitMessage = { "gitlint" },
gitcommit = { "gitlint" }, gitcommit = { "gitlint" },

View file

@ -6,6 +6,7 @@ return {
opts = { opts = {
ensure_installed = { ensure_installed = {
"blue", "blue",
"pylint",
"eslint_d", "eslint_d",
"markdownlint", "markdownlint",
"nimlsp", "nimlsp",

View file

@ -16,6 +16,7 @@ export OPENAI_API_KEY="{{ .openAIKey }}"
export NPM_PACKAGES="$HOME/.npm-packages" export NPM_PACKAGES="$HOME/.npm-packages"
export NODE_PATH="$NPM_PACKAGES/lib/node_modules${NODE_PATH:+:$NODE_PATH}" export NODE_PATH="$NPM_PACKAGES/lib/node_modules${NODE_PATH:+:$NODE_PATH}"
export PNPM_HOME="$HOME/.local/share/pnpm" export PNPM_HOME="$HOME/.local/share/pnpm"
export ESLINT_USE_FLAT_CONFIG=true
. "$HOME/.cargo/env" . "$HOME/.cargo/env"
# Unset manpath so we can inherit from /etc/manpath via the `manpath` # Unset manpath so we can inherit from /etc/manpath via the `manpath`