Skip to content

Commit

Permalink
Updates ftplugins
Browse files Browse the repository at this point in the history
  • Loading branch information
inkatze committed Jun 25, 2024
1 parent cf860c3 commit 85e3e16
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions roles/neovim/files/nvim/ftplugin/groovy.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
vim.opt_local.expandtab = true
vim.opt_local.shiftwidth = 2
vim.opt_local.tabstop = 2
vim.opt_local.softtabstop = 2
vim.opt_local.autoindent = true
vim.opt_local.expandtab = false
vim.opt_local.shiftwidth = 4
vim.opt_local.tabstop = 4
vim.opt_local.softtabstop = 4
3 changes: 2 additions & 1 deletion roles/neovim/files/nvim/ftplugin/xml.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
vim.opt_local.expandtab = true
vim.opt_local.autoindent = true
vim.opt_local.expandtab = false
vim.opt_local.shiftwidth = 4
vim.opt_local.tabstop = 4
vim.opt_local.softtabstop = 4

0 comments on commit 85e3e16

Please sign in to comment.