dotfiles/nvim/after/ftplugin/java.lua
2024-01-04 09:51:14 +00:00

5 lines
111 B
Lua

-- Set indentation for Java files to 4 spaces
vim.bo.shiftwidth = 4
vim.bo.tabstop = 4
vim.bo.expandtab = true