Loading cvimrc doesn't work
See original GitHub issueI tried:
let configpath = '/path/to/your/.cvimrc'
set localconfig
using both my home dir as ~
and my fully expanded home dir in two separate tries.
Both times, I restarted Chrome and opened the cvim options. I got a modal that said there was an error loading the configuration file.
Issue Analytics
- State:
- Created 8 years ago
- Comments:12
Top Results From Across the Web
vim - Not reading ~/.vimrc - Stack Overflow
Once you've loaded vim, :scriptnames will tell you exactly what Vim read. ... Open the vim_strace file and search for "vimrc" in the...
Read more >GVIM on Windows not loading vimrc sometimes
I'm using GVIM 7.2 on Windows 7 and am having a problem with the vimrc file. When I open GVIM and then open...
Read more >[SOLVED]vim not applying settings from my .vimrc
Meanwhile I found a proper workaround as vim -V shows off where it's trying to load files and when: $HOME/.vim/after/plugin/ directory is loaded...
Read more >plugin system - how to load vim8 optional packages in vimrc?
The way to load vim8 optional packages in your vimrc is to use the :packadd! command, which will add them to your 'runtimepath'...
Read more >Can I load .vimrc from a WSL path? · Issue #4740 - GitHub
I figured why it wasn't working: ~/.vimrc is a symbolic link and Windows doesn't seem to be able to resolve them; I can't...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Checking “Allow access to file URLS” for cvim in the extension view of my browser and following the steps @mrap mentioned worked for me.
The documentation for using
set localconfig
is a bit hidden in:help
. But here’s how to do it.let configpath = '/path/to/your/.cvimrc'
andset localconfig
to your local cvimrc file.:source /path/to/your/.cvimrc
:settings
and put onlyset localconfig
in the cvimrc textarea.