some changes

This commit is contained in:
jhe 2024-05-22 16:02:16 +02:00
parent 5aeddfdd5d
commit 1d6812e2f0
No known key found for this signature in database
GPG key ID: 10FFC60F6B8DC9B7
5 changed files with 46 additions and 4 deletions

3
ftplugin/javascript.lua Normal file
View file

@ -0,0 +1,3 @@
vim.o.tabstop = 4
vim.o.shiftwidth = 4
vim.o.expandtab = true

4
ftplugin/main.js Normal file
View file

@ -0,0 +1,4 @@
if (true) {
console.log("Hello world");
}

4
ftplugin/main.py Normal file
View file

@ -0,0 +1,4 @@
if True:
print("Hello world")

3
ftplugin/python.lua Normal file
View file

@ -0,0 +1,3 @@
vim.o.tabstop = 2
vim.o.shiftwidth = 2
vim.o.expandtab = true