diff options
author | Federico Igne <git@federicoigne.com> | 2023-02-22 10:40:10 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2023-02-22 10:40:10 +0100 |
commit | 5d442d33e1de8a582dfd9645fa0c61b964f4d257 (patch) | |
tree | 3e3afddb04ddf189f5fd32279dd722debdafa9a3 | |
parent | c6dfb74bb0206a89d4b69311334133541d1d6aa5 (diff) | |
download | dotfiles-5d442d33e1de8a582dfd9645fa0c61b964f4d257.tar.gz dotfiles-5d442d33e1de8a582dfd9645fa0c61b964f4d257.zip |
[nvim] add autocapitalization for Dockerfile keywords
-rw-r--r-- | neovim/.config/nvim/after/ftplugin/dockerfile.lua | 10 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/dyamon/util/abbrev.lua | 31 |
2 files changed, 41 insertions, 0 deletions
diff --git a/neovim/.config/nvim/after/ftplugin/dockerfile.lua b/neovim/.config/nvim/after/ftplugin/dockerfile.lua new file mode 100644 index 0000000..deb3ccf --- /dev/null +++ b/neovim/.config/nvim/after/ftplugin/dockerfile.lua | |||
@@ -0,0 +1,10 @@ | |||
1 | --- Personal lua config files for NeoVim. | ||
2 | -- Last Changed: 2023-01-10 | ||
3 | -- Author: Federico Igne <git@federicoigne.com> | ||
4 | -- License: This file is placed in the public domain. | ||
5 | |||
6 | local abbrev = require 'dyamon.util.abbrev' | ||
7 | |||
8 | for _,w in ipairs({ "from", "workdir", "copy", "run", "cmd" }) do | ||
9 | abbrev.i(w, "luaeval('require\"dyamon.util.abbrev\".custom.docker_cmd(\"" .. w .. "\")')", true, true) | ||
10 | end | ||
diff --git a/neovim/.config/nvim/lua/dyamon/util/abbrev.lua b/neovim/.config/nvim/lua/dyamon/util/abbrev.lua new file mode 100644 index 0000000..4e102c7 --- /dev/null +++ b/neovim/.config/nvim/lua/dyamon/util/abbrev.lua | |||
@@ -0,0 +1,31 @@ | |||
1 | --- Personal lua config files for NeoVim. | ||
2 | -- Last Changed: 2023-01-10 | ||
3 | -- Author: Federico Igne <git@federicoigne.com> | ||
4 | -- License: This file is placed in the public domain. | ||
5 | |||
6 | --- A collection of helper functions to manipulate mappings | ||
7 | local m = { custom = { } } | ||
8 | |||
9 | function m.i(from, to, buffer, expr) | ||
10 | local command = 'iabbrev ' | ||
11 | if buffer then | ||
12 | command = command .. '<buffer> ' | ||
13 | end | ||
14 | if expr then | ||
15 | command = command .. '<expr> ' | ||
16 | end | ||
17 | vim.cmd(command .. from .. ' ' .. to) | ||
18 | end | ||
19 | |||
20 | function m.capitalize(word, buffer) | ||
21 | m.i(word, word:upper(), buffer) | ||
22 | end | ||
23 | |||
24 | function m.custom.docker_cmd(w) | ||
25 | if vim.api.nvim_win_get_cursor(0)[2] > w:len() then | ||
26 | return w | ||
27 | end | ||
28 | return w:upper() | ||
29 | end | ||
30 | |||
31 | return m | ||