Hi, when I first open vifm, the colors are working properly, but then when I open a text file with vim, the color scheme changes.. The color scheme changes for my terminal as well. Wondering if there is a quick fix. Thank you
I have attached what I believe to be the relevant parts of my vimrc file.
let mapleader =" "
call plug#begin('~/.vim/plugged')
Plug 'lervag/vimtex'
let g:tex_flavor='latex'
let g:vimtex_view_method='zathura'
let g:vimtex_quickfix_mode=0
set conceallevel=2
let g:tex_conceal='abdmg'
Plug 'SirVer/Ultisnips'
let g:UltiSnipsExpandTrigger = '<tab>'
let g:UltiSnipsJumpForwardTrigger = '<tab>'
let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
let g:UltiSnipsSnippetDirectories = ['/home/acarnec/.vim/my-snippets']
Plug 'junegunn/goyo.vim'
Plug 'dylanaraps/wal.vim'
call plug#end()