This commit is contained in:
Never Gude 2026-04-27 21:10:27 +02:00
parent c040534c69
commit 98e2ec0132
4 changed files with 16 additions and 3 deletions

View file

@ -4,6 +4,8 @@
vim.g.mapleader = " "
vim.g.maplocalleader = " "
vim.o.guifont = "Adwaita Mono:h12"
-- Disable mouse input
vim.o.mouse = ""
@ -123,7 +125,7 @@ vim.filetype.add({
-- Install nvim-treesitter
vim.pack.add({ "https://github.com/nvim-treesitter/nvim-treesitter" })
require("nvim-treesitter").install({ 'fish', 'java', 'latex', 'make' })
require("nvim-treesitter").install({ 'fish', 'java', 'latex', 'make', 'python' })
vim.api.nvim_create_autocmd('FileType', {
pattern = { '<filetype>' },