mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-23 17:28:50 +02:00
config spesific language
This commit is contained in:
parent
39a2d3d8b8
commit
a9d7cbc71f
3 changed files with 12 additions and 0 deletions
4
ftplugin/kotlin.lua
Normal file
4
ftplugin/kotlin.lua
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
vim.opt_local.expandtab = true
|
||||||
|
vim.opt_local.shiftwidth = 4
|
||||||
|
vim.opt_local.tabstop = 4
|
||||||
|
vim.opt_local.softtabstop = 4
|
4
ftplugin/lua.lua
Normal file
4
ftplugin/lua.lua
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
vim.opt_local.expandtab = true
|
||||||
|
vim.opt_local.shiftwidth = 2
|
||||||
|
vim.opt_local.tabstop = 2
|
||||||
|
vim.opt_local.softtabstop = 2
|
4
ftplugin/python.lua
Normal file
4
ftplugin/python.lua
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
vim.opt_local.expandtab = true
|
||||||
|
vim.opt_local.shiftwidth = 4
|
||||||
|
vim.opt_local.tabstop = 4
|
||||||
|
vim.opt_local.softtabstop = 4
|
Loading…
Add table
Add a link
Reference in a new issue