stuff
This commit is contained in:
parent
c040534c69
commit
98e2ec0132
4 changed files with 16 additions and 3 deletions
1
.config/nvim/ftplugin/python.lua
Normal file
1
.config/nvim/ftplugin/python.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
vim.treesitter.start()
|
||||
|
|
@ -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>' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue