aboutsummaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-08-12 09:00:27 +0200
committerThomas Schmucker <ts@its1.de>2026-08-12 09:00:27 +0200
commit41c676453cd32fac760ff26e092c9dc81874739f (patch)
tree3a6a9847dafabea051997b1a9cbc124a242ec1d3 /nvim
parent471abc214360fb5f2e8391180536c1a92615f5f7 (diff)
downloaddotfiles-41c676453cd32fac760ff26e092c9dc81874739f.tar.gz
dotfiles-41c676453cd32fac760ff26e092c9dc81874739f.tar.bz2
dotfiles-41c676453cd32fac760ff26e092c9dc81874739f.zip
neovim: Formateinstellungen für JSON Dateien
Diffstat (limited to 'nvim')
-rw-r--r--nvim/ftplugin/json.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/nvim/ftplugin/json.lua b/nvim/ftplugin/json.lua
new file mode 100644
index 0000000..a6321ff
--- /dev/null
+++ b/nvim/ftplugin/json.lua
@@ -0,0 +1,5 @@
1local opt = vim.opt_local
2
3opt.expandtab = true
4opt.shiftwidth = 2
5opt.tabstop = 2