mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-03-28 10:24:47 +01:00
NVIM: Added some plugins
This commit is contained in:
24
.config/nvim/lua/plugins/dial.lua
Normal file
24
.config/nvim/lua/plugins/dial.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
return {
|
||||
-- improves vims increment and decrement functions
|
||||
"monaqa/dial.nvim",
|
||||
config = function()
|
||||
local augend = require("dial.augend")
|
||||
require("dial.config").augends:register_group{
|
||||
default = {
|
||||
augend.integer.alias.decimal,
|
||||
augend.integer.alias.hex,
|
||||
augend.date.alias["%Y/%m/%d"],
|
||||
augend.date.alias["%d.%m.%Y"],
|
||||
augend.date.alias["%d.%m.%y"],
|
||||
augend.date.alias["%H:%M"],
|
||||
augend.constant.alias.de_weekday,
|
||||
augend.constant.alias.de_weekday_full,
|
||||
augend.constant.alias.bool,
|
||||
augend.constant.alias.Bool,
|
||||
augend.semver.alias.semver,
|
||||
augend.constant.alias.en_weekday,
|
||||
augend.constant.alias.en_weekday_full,
|
||||
},
|
||||
}
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user