diff options
author | tdback <tyler@tdback.net> | 2024-12-21 15:55:44 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2024-12-21 15:55:44 -0500 |
commit | fdf6ef0ced84ec32b787e593789151a03bcd51c9 (patch) | |
tree | ae75f82f7f4b08ce97960af08735919a60f52142 /after | |
parent | 3b2163b821f4dbf1003804b9b19fd276dc4bc350 (diff) |
add toml filetype settings when working with hugo
Diffstat (limited to 'after')
-rw-r--r-- | after/ftplugin/toml.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/after/ftplugin/toml.lua b/after/ftplugin/toml.lua new file mode 100644 index 0000000..78c5eeb --- /dev/null +++ b/after/ftplugin/toml.lua @@ -0,0 +1,3 @@ +vim.opt_local.shiftwidth = 2 +vim.opt_local.tabstop = 2 +vim.opt_local.expandtab = true |