comfy-line-numbers
URL: https://github.com/mluders/comfy-line-numbers.nvim/
Maintainers: Ceferino Patino
A Neovim plugin that makes vertical motions more comfortable.
plugins.comfy-line-numbers.enable
Whether to enable comfy-line-numbers.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.comfy-line-numbers.package
The comfy-line-numbers package to use.
Type: package
Default:
pkgs.vimPlugins.comfy-line-numbers-nvim
Declared by:
plugins.comfy-line-numbers.autoLoad
Whether to automatically load comfy-line-numbers when neovim starts.
Type: boolean
Default:
false
when lazy-loading is enabled.
Example:
false
Declared by:
plugins.comfy-line-numbers.settings
Options provided to the require('comfy-line-numbers').setup
function.
Type: attribute set of anything
Default:
{ }
Example:
{
labels = [
"1" "2" "3" "4" "5"
"11" "12" "13" "14" "15"
"21" "22" "23" "24" "25"
"31" "32" "33" "34" "35"
"41" "42" "43" "44" "45"
"51" "52" "53" "54" "55"
"111" "112" "113" "114" "115"
"121" "122" "123" "124" "125"
"131" "132" "133" "134" "135"
"141" "142" "143" "144" "145"
"151" "152" "153" "154" "155"
"211" "212" "213" "214" "215"
"221" "222" "223" "224" "225"
"231" "232" "233" "234" "235"
"241" "242" "243" "244" "245"
"251" "252" "253" "254" "255"
];
up_key = "k";
down_key = "j";
hidden_file_types = [ "undotree" ];
hidden_buffer_types = [
"terminal"
"nofile"
];
}
Declared by: