Provision python 3.12

This commit is contained in:
Sonny Bakker 2025-02-13 20:50:07 +01:00
parent 199f40b0ea
commit 3ca4225f7c
3 changed files with 3 additions and 0 deletions

View file

@ -159,6 +159,7 @@ vim.diagnostic.config({
local enable_formatting = os.getenv("ENABLE_FORMATTING", False) local enable_formatting = os.getenv("ENABLE_FORMATTING", False)
-- TODO: fix error message: [LSP] Format request failed, no matching language servers.
-- format buffers before saving for specific LSPs -- format buffers before saving for specific LSPs
if (enable_formatting) then if (enable_formatting) then
local excluded_clients = { 'pyright' } local excluded_clients = { 'pyright' }

View file

@ -2,6 +2,7 @@
local lualine = require('lualine'); local lualine = require('lualine');
-- TODO: show attached LSP count
lualine.setup { lualine.setup {
sections = { sections = {
lualine_a = {'mode'}, lualine_a = {'mode'},

View file

@ -102,6 +102,7 @@ language_servers:
python_download_url: 'https://www.python.org/ftp/python' python_download_url: 'https://www.python.org/ftp/python'
python_versions: python_versions:
- { version: 3.12.9, path: 'python3.12', binary: 'python3.12' }
- { version: 3.11.9, path: 'python3.11', binary: 'python3.11' } - { version: 3.11.9, path: 'python3.11', binary: 'python3.11' }
- { version: 3.10.0, path: 'python3.10', binary: 'python3.10' } - { version: 3.10.0, path: 'python3.10', binary: 'python3.10' }
- { version: 3.9.14, path: 'python3.9', binary: 'python3.9' } - { version: 3.9.14, path: 'python3.9', binary: 'python3.9' }