20 lines
865 B
VimL
20 lines
865 B
VimL
" ~/.vimrc — Vim configuration
|
|
"
|
|
" This is a minimal vimrc used for legacy Vim (when nvim is not available).
|
|
" The primary editor on this system is Neovim; Vim is only kept as a fallback.
|
|
" The config delegates all theme setup to a shared theme file so that both
|
|
" Vim and Neovim pick up the same CyberQueer color scheme.
|
|
"
|
|
|
|
" Load the shared theme settings file from the dotfiles repo.
|
|
" This file sets options like 'set termguicolors', 'set background=dark', etc.
|
|
" Sourcing it here keeps the Vim and Neovim theme configurations in sync
|
|
" without duplicating settings in two places.
|
|
source ~/Dotfiles/vim/theme
|
|
|
|
" Apply the CyberQueer color scheme.
|
|
" cyberqueer.nvim is stored in the nvim color directory but is also compatible
|
|
" with Vim when placed in ~/.vim/colors/ or when Vim's runtimepath includes
|
|
" the nvim config directory.
|
|
colorscheme cyberqueer.nvim
|