diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-08-12 09:19:03 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-08-12 09:19:03 +0200 |
| commit | 6e5882a2fd02d30206ab9ca8aa5847b8ea09196c (patch) | |
| tree | 75d3b91f9005e51b93a37b44f3ad23ce4f48bc35 /nvim/ftplugin | |
| parent | 41c676453cd32fac760ff26e092c9dc81874739f (diff) | |
| download | dotfiles-6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.tar.gz dotfiles-6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.tar.bz2 dotfiles-6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.zip | |
Normalize line endings
Diffstat (limited to 'nvim/ftplugin')
| -rw-r--r-- | nvim/ftplugin/gitolite.lua | 8 | ||||
| -rw-r--r-- | nvim/ftplugin/html.lua | 16 | ||||
| -rw-r--r-- | nvim/ftplugin/lua.lua | 12 | ||||
| -rw-r--r-- | nvim/ftplugin/markdown.lua | 6 | ||||
| -rw-r--r-- | nvim/ftplugin/sh.lua | 8 | ||||
| -rw-r--r-- | nvim/ftplugin/taskedit.lua | 2 | ||||
| -rw-r--r-- | nvim/ftplugin/taskwarrior.lua | 14 | ||||
| -rw-r--r-- | nvim/ftplugin/typescript.lua | 12 |
8 files changed, 39 insertions, 39 deletions
diff --git a/nvim/ftplugin/gitolite.lua b/nvim/ftplugin/gitolite.lua index c5d1305..acbde0f 100644 --- a/nvim/ftplugin/gitolite.lua +++ b/nvim/ftplugin/gitolite.lua | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | local opt = vim.opt_local | 1 | local opt = vim.opt_local |
| 2 | 2 | ||
| 3 | opt.expandtab = true | 3 | opt.expandtab = true |
| 4 | opt.shiftwidth = 4 | 4 | opt.shiftwidth = 4 |
diff --git a/nvim/ftplugin/html.lua b/nvim/ftplugin/html.lua index 009e21d..98580db 100644 --- a/nvim/ftplugin/html.lua +++ b/nvim/ftplugin/html.lua | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | local opt = vim.opt_local | 1 | local opt = vim.opt_local |
| 2 | 2 | ||
| 3 | opt.tabstop = 2 | 3 | opt.tabstop = 2 |
| 4 | opt.softtabstop = 2 | 4 | opt.softtabstop = 2 |
| 5 | opt.shiftwidth = 2 | 5 | opt.shiftwidth = 2 |
| 6 | opt.expandtab = true | 6 | opt.expandtab = true |
| 7 | opt.autoindent = true | 7 | opt.autoindent = true |
| 8 | opt.foldenable = true | 8 | opt.foldenable = true |
diff --git a/nvim/ftplugin/lua.lua b/nvim/ftplugin/lua.lua index 096143b..087e84c 100644 --- a/nvim/ftplugin/lua.lua +++ b/nvim/ftplugin/lua.lua | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | local opt = vim.opt_local | 1 | local opt = vim.opt_local |
| 2 | 2 | ||
| 3 | opt.expandtab = true | 3 | opt.expandtab = true |
| 4 | opt.shiftwidth = 2 | 4 | opt.shiftwidth = 2 |
| 5 | opt.softtabstop = 2 | 5 | opt.softtabstop = 2 |
| 6 | opt.tabstop = 2 | 6 | opt.tabstop = 2 |
diff --git a/nvim/ftplugin/markdown.lua b/nvim/ftplugin/markdown.lua index 5f07330..dca68dd 100644 --- a/nvim/ftplugin/markdown.lua +++ b/nvim/ftplugin/markdown.lua | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | local opt = vim.opt_local | 1 | local opt = vim.opt_local |
| 2 | 2 | ||
| 3 | opt.wrap = true | 3 | opt.wrap = true |
diff --git a/nvim/ftplugin/sh.lua b/nvim/ftplugin/sh.lua index cda52f1..4bde5f7 100644 --- a/nvim/ftplugin/sh.lua +++ b/nvim/ftplugin/sh.lua | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | local opt = vim.opt_local | 1 | local opt = vim.opt_local |
| 2 | 2 | ||
| 3 | opt.expandtab = true | 3 | opt.expandtab = true |
| 4 | opt.shiftwidth = 2 | 4 | opt.shiftwidth = 2 |
diff --git a/nvim/ftplugin/taskedit.lua b/nvim/ftplugin/taskedit.lua index a905acb..ebc56aa 100644 --- a/nvim/ftplugin/taskedit.lua +++ b/nvim/ftplugin/taskedit.lua | |||
| @@ -1 +1 @@ | |||
| vim.cmd.runtime("ftplugin/taskwarrior.lua") | vim.cmd.runtime("ftplugin/taskwarrior.lua") | ||
diff --git a/nvim/ftplugin/taskwarrior.lua b/nvim/ftplugin/taskwarrior.lua index a3c4537..64f8ed7 100644 --- a/nvim/ftplugin/taskwarrior.lua +++ b/nvim/ftplugin/taskwarrior.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | local opt = vim.opt_local | 1 | local opt = vim.opt_local |
| 2 | 2 | ||
| 3 | opt.autoindent = false | 3 | opt.autoindent = false |
| 4 | opt.cindent = false | 4 | opt.cindent = false |
| 5 | opt.indentexpr = "" | 5 | opt.indentexpr = "" |
| 6 | opt.indentkeys = "" | 6 | opt.indentkeys = "" |
| 7 | opt.smartindent = false | 7 | opt.smartindent = false |
diff --git a/nvim/ftplugin/typescript.lua b/nvim/ftplugin/typescript.lua index 096143b..087e84c 100644 --- a/nvim/ftplugin/typescript.lua +++ b/nvim/ftplugin/typescript.lua | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | local opt = vim.opt_local | 1 | local opt = vim.opt_local |
| 2 | 2 | ||
| 3 | opt.expandtab = true | 3 | opt.expandtab = true |
| 4 | opt.shiftwidth = 2 | 4 | opt.shiftwidth = 2 |
| 5 | opt.softtabstop = 2 | 5 | opt.softtabstop = 2 |
| 6 | opt.tabstop = 2 | 6 | opt.tabstop = 2 |
