My nvim config isn't applied #48
-
Is this normal? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @J-Kappes thank you for the question. When you say your config isn't applied do you mean your default configuration in If so, by default kitty-scrollback.nvim runs nvim with the parameters You can change this behavior by configuring the For example, this runs with the default arguments
If you don't want to pass any arguments to nvim, you can use
If you want to pass customized arguments to nvim, you can use
this is just an example to show how you can pass more arguments.
|
Beta Was this translation helpful? Give feedback.
Hey @J-Kappes thank you for the question. When you say your config isn't applied do you mean your default configuration in
~/.config/nvim
?If so, by default kitty-scrollback.nvim runs nvim with the parameters
--clean --noplugin -n
. This runs nvim without a configuration, no plugins, and in memory.You can change this behavior by configuring the
action_alias
ormap
commands inkitty.conf
.For example, this runs with the default arguments
--clean --noplugin -n
nvim --clean --noplugin -n
If you don't want to pass any arguments to nvim, you can use
--no-nvim-args