Update
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 25s Details

This commit is contained in:
Yannick Reiß 2024-07-30 06:44:24 +02:00
parent 9c504e284f
commit 859311d0ee
2 changed files with 6 additions and 1 deletions

View File

@ -27,6 +27,6 @@ for param in params:
$6 $6
`!p `!p
if t[4] != "": if t[4] != "":
snip.rv = f"\n\treturn {t[4]}"` snip.rv = f"\n return {t[4]}"`
$0 $0
endsnippet endsnippet

View File

@ -1,3 +1,7 @@
if vim == nil then
vim = {}
end
-- Update function and call -- Update function and call
function Update_Sys() function Update_Sys()
vim.cmd("Lazy sync") vim.cmd("Lazy sync")
@ -100,6 +104,7 @@ vim.cmd([[
]]) ]])
-- Ale configuration -- Ale configuration
vim.g.ale_linters_explicit = 0
local linters = { local linters = {
python = { "pylint" }, python = { "pylint" },
vim = { "vint" }, vim = { "vint" },