coc-clock
v0.0.12
Published
Big Clock for Neovim
Downloads
23
Readme
Big Clock for Neovim
coc extensions of clock.nvim
Install
:CocInstall coc-clock
Coc Commands
clock.enable
enable clockclock.disable
disable clock
Options
config:
"clock.enable": {
"type": "boolean",
"default": true,
"description": "Enable clock when open neovim"
},
"clock.color": {
"type": "string",
"default": "",
"description": "clock color, default is Normal highlight group"
},
"clock.winblend": {
"type": "number",
"default": 100,
"description": "config opacity of floating window background 0-100 from fully opaque to transparent, default is 100. check `:echo exists('+winblend')` to see if your neovim support this option."
},
"clock.top": {
"type": "number",
"default": 1,
"description": "position distance to top"
},
"clock.right": {
"type": "number",
"default": 1,
"description": "position distance to right"
},
"clock.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Trace level of coc-clock"
}