feat: Neovim config mit LSP, Treesitter und PlatformIO

This commit is contained in:
rene 2025-12-16 17:38:54 +01:00
parent c2b9c8f3c9
commit 824ff44370
9 changed files with 345 additions and 0 deletions

26
nvim/init.lua Normal file
View file

@ -0,0 +1,26 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
vim.opt.termguicolors = true
vim.opt.signcolumn = 'yes'
vim.opt.updatetime = 250
vim.opt.clipboard = 'unnamedplus'
vim.g.python3_host_prog = '/Users/rene/miniconda3/bin/python3'
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
'git', 'clone', '--filter=blob:none',
'https://github.com/folke/lazy.nvim.git',
'--branch=stable', lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require('lazy').setup('plugins')