summaryrefslogtreecommitdiff
path: root/nvim/ftplugin
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-10-18 11:40:27 +0200
committerxengineering <me@xengineering.eu>2025-10-18 11:40:27 +0200
commit3c9b914b14a7c2576d7347cb49942393134a864f (patch)
tree6a61bbdfb047a8f51eabd0361bf0f39dd57ef9de /nvim/ftplugin
parent0a49929eb8357a848cff373e35402fff52370c80 (diff)
downloaddotfiles-3c9b914b14a7c2576d7347cb49942393134a864f.tar
dotfiles-3c9b914b14a7c2576d7347cb49942393134a864f.tar.zst
dotfiles-3c9b914b14a7c2576d7347cb49942393134a864f.zip
nvim: dart: Configure default indentation
Diffstat (limited to 'nvim/ftplugin')
-rw-r--r--nvim/ftplugin/dart.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim/ftplugin/dart.lua b/nvim/ftplugin/dart.lua
new file mode 100644
index 0000000..783a159
--- /dev/null
+++ b/nvim/ftplugin/dart.lua
@@ -0,0 +1,3 @@
+vim.opt_local.tabstop = 2
+vim.opt_local.shiftwidth = 2
+vim.opt_local.expandtab = true