aboutsummaryrefslogtreecommitdiff
path: root/nvim/ftplugin/typescript.lua
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-01-08 14:52:12 +0100
committerThomas Schmucker <ts@its1.de>2026-01-08 14:52:12 +0100
commit2235d045d4765571f35543be71d25b16418057df (patch)
treeee616c32db82d97cba4b48796ccf93ce24bc1a50 /nvim/ftplugin/typescript.lua
parente0a4675dcb4cc0ee529243c4fff47549029cee0a (diff)
downloaddotfiles-2235d045d4765571f35543be71d25b16418057df.tar.gz
dotfiles-2235d045d4765571f35543be71d25b16418057df.tar.bz2
dotfiles-2235d045d4765571f35543be71d25b16418057df.zip
Neovim: Typescript Optionen
Diffstat (limited to 'nvim/ftplugin/typescript.lua')
-rw-r--r--nvim/ftplugin/typescript.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/nvim/ftplugin/typescript.lua b/nvim/ftplugin/typescript.lua
new file mode 100644
index 0000000..0883a50
--- /dev/null
+++ b/nvim/ftplugin/typescript.lua
@@ -0,0 +1,6 @@
1local opt = vim.opt_local
2
3opt.expandtab = true
4opt.shiftwidth = 2
5opt.tabstop = 2
6opt.softtabstop = 2