How do I configure in Vim? #391
-
I have installed in vanilla Vim:
I love the theme, but I want to remove the background. Is it possible to configure like so using vanilla Vim:
If so, where should I put the above? And where/home would I call it? I kept reading about init.vim/init.lua but to my knowledge these are nvim things, not plain old Vim! Thanks a bunch. |
Beta Was this translation helpful? Give feedback.
Answered by
nullchilly
Jan 27, 2023
Replies: 1 comment 1 reply
-
In lua << EOF
require("catppuccin").setup({
transparent_background = false
})
EOF
colorscheme catppuccin-mocha You can take a look at my .vimrc :) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nullchilly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
.vimrc
:You can take a look at my .vimrc :)