Unable to link vimwiki in Dropbox to my local machineUsing Git and Dropbox together effectively?vim: autoindent not workingPressing tab in HTML files in vim goes to the next empty tag pair rather than expanding a completionVIM: dynamic runtimepath per module.vim and slow startupGit and Dropbox - local repoSetting vimwiki defaultsLoading google.vim indent file in VimHow to prevent global defaults from overriding 'filetype=vim' specific settings in .vimrc when automatically sourcing .vimrc?vim 7.3 upgrade sets runtimepath to nonexistent pathIndentation changes in new tab-page of vim
Is it safe to keep the GPU on 100% utilization for a very long time?
Wiper fluid only squirts out for a second - Hyundai Accent 2006
Is your maximum jump distance halved by grappling?
Is there a list of the most-transited airports in the world?
Are wands in any sort of book going to be too much like Harry Potter?
What should I use to get rid of some kind of weed in my onions
Creating Stored Procedure in local db that references tables in linked server
How is it believable that Euron could so easily pull off this ambush?
Do oversize pulley wheels increase derailleur capacity?
How can I test a shell script in a "safe environment" to avoid harm to my computer?
Are there vaccine ingredients which may not be disclosed ("hidden", "trade secret", or similar)?
My parents are Afghan
Illegal assignment from Id to List
When was it publicly revealed that a KH-11 spy satellite took pictures of the first Shuttle flight?
Add elements inside Array conditionally in JavaScript
What will Doctor Strange protect now?
Exactly which act of bravery are Luke and Han awarded a medal for?
Is this strange Morse signal type common?
Is it possible to do moon sighting in advance for 5 years with 100% accuracy?
My perfect evil overlord plan... or is it?
I want to write a blog post building upon someone else's paper, how can I properly cite/credit them?
Colorless commander using lands that chose based upon identity?
Partition error (Fdisk/Parted)
What are my options legally if NYC company is not paying salary?
Unable to link vimwiki in Dropbox to my local machine
Using Git and Dropbox together effectively?vim: autoindent not workingPressing tab in HTML files in vim goes to the next empty tag pair rather than expanding a completionVIM: dynamic runtimepath per module.vim and slow startupGit and Dropbox - local repoSetting vimwiki defaultsLoading google.vim indent file in VimHow to prevent global defaults from overriding 'filetype=vim' specific settings in .vimrc when automatically sourcing .vimrc?vim 7.3 upgrade sets runtimepath to nonexistent pathIndentation changes in new tab-page of vim
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am new to vim and vimwiki and I am trying to create a set up where my vimwiki and vimrc files are located in Dropbox and can be accessed on via any computer where dropbox is installed.
So far I can access the vimrc files without an issue but with the vimwiki my local Macbook does not recognise the link to dropbox and only seems to want to create a local wiki, when I want it to link to the one in Dropbox.
I have created a vimrc.vim file that is hosted in Dropbox that contains all of my vim configurations. I have also placed my vimwiki files in Dropbox as well. I access them via local vimrc files that contain only two lines to access the Dropbox/vim/vimrc.vim
the 'remote' vimrc.vim file based in Dropbox looks like this:
set number
syntax on
set tabstop=2
set softtabstop=2
set expandtab
set cursorline
set showmatch
set wildmenu
colorscheme slate
filetype indent on
filetype plugin on
set nocompatible
set backspace=indent,eol,start
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
The 'local' vimrc used to access the 'remote' vimrc via my local .vim directory looks like:
set runtimepath^=$HOME/Dropbox/vim
source $HOME/Dropbox/vim/vimrc.vim
As expected, the local vim can access the configurations within the remote vimrc.vim file without any issues. However, I expected to be able to access vimwiki via the line:
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
However, when I open vimwiki it is only prompting me to open a new wiki on my home folder rather then access the remote one based in Dropbox.
Can anyone please tell me why this is as the code should work from what I have read?
vim dropbox vim-plugin
add a comment |
I am new to vim and vimwiki and I am trying to create a set up where my vimwiki and vimrc files are located in Dropbox and can be accessed on via any computer where dropbox is installed.
So far I can access the vimrc files without an issue but with the vimwiki my local Macbook does not recognise the link to dropbox and only seems to want to create a local wiki, when I want it to link to the one in Dropbox.
I have created a vimrc.vim file that is hosted in Dropbox that contains all of my vim configurations. I have also placed my vimwiki files in Dropbox as well. I access them via local vimrc files that contain only two lines to access the Dropbox/vim/vimrc.vim
the 'remote' vimrc.vim file based in Dropbox looks like this:
set number
syntax on
set tabstop=2
set softtabstop=2
set expandtab
set cursorline
set showmatch
set wildmenu
colorscheme slate
filetype indent on
filetype plugin on
set nocompatible
set backspace=indent,eol,start
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
The 'local' vimrc used to access the 'remote' vimrc via my local .vim directory looks like:
set runtimepath^=$HOME/Dropbox/vim
source $HOME/Dropbox/vim/vimrc.vim
As expected, the local vim can access the configurations within the remote vimrc.vim file without any issues. However, I expected to be able to access vimwiki via the line:
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
However, when I open vimwiki it is only prompting me to open a new wiki on my home folder rather then access the remote one based in Dropbox.
Can anyone please tell me why this is as the code should work from what I have read?
vim dropbox vim-plugin
add a comment |
I am new to vim and vimwiki and I am trying to create a set up where my vimwiki and vimrc files are located in Dropbox and can be accessed on via any computer where dropbox is installed.
So far I can access the vimrc files without an issue but with the vimwiki my local Macbook does not recognise the link to dropbox and only seems to want to create a local wiki, when I want it to link to the one in Dropbox.
I have created a vimrc.vim file that is hosted in Dropbox that contains all of my vim configurations. I have also placed my vimwiki files in Dropbox as well. I access them via local vimrc files that contain only two lines to access the Dropbox/vim/vimrc.vim
the 'remote' vimrc.vim file based in Dropbox looks like this:
set number
syntax on
set tabstop=2
set softtabstop=2
set expandtab
set cursorline
set showmatch
set wildmenu
colorscheme slate
filetype indent on
filetype plugin on
set nocompatible
set backspace=indent,eol,start
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
The 'local' vimrc used to access the 'remote' vimrc via my local .vim directory looks like:
set runtimepath^=$HOME/Dropbox/vim
source $HOME/Dropbox/vim/vimrc.vim
As expected, the local vim can access the configurations within the remote vimrc.vim file without any issues. However, I expected to be able to access vimwiki via the line:
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
However, when I open vimwiki it is only prompting me to open a new wiki on my home folder rather then access the remote one based in Dropbox.
Can anyone please tell me why this is as the code should work from what I have read?
vim dropbox vim-plugin
I am new to vim and vimwiki and I am trying to create a set up where my vimwiki and vimrc files are located in Dropbox and can be accessed on via any computer where dropbox is installed.
So far I can access the vimrc files without an issue but with the vimwiki my local Macbook does not recognise the link to dropbox and only seems to want to create a local wiki, when I want it to link to the one in Dropbox.
I have created a vimrc.vim file that is hosted in Dropbox that contains all of my vim configurations. I have also placed my vimwiki files in Dropbox as well. I access them via local vimrc files that contain only two lines to access the Dropbox/vim/vimrc.vim
the 'remote' vimrc.vim file based in Dropbox looks like this:
set number
syntax on
set tabstop=2
set softtabstop=2
set expandtab
set cursorline
set showmatch
set wildmenu
colorscheme slate
filetype indent on
filetype plugin on
set nocompatible
set backspace=indent,eol,start
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
The 'local' vimrc used to access the 'remote' vimrc via my local .vim directory looks like:
set runtimepath^=$HOME/Dropbox/vim
source $HOME/Dropbox/vim/vimrc.vim
As expected, the local vim can access the configurations within the remote vimrc.vim file without any issues. However, I expected to be able to access vimwiki via the line:
let g:vimwiki_list = ['path': '$HOME/Dropbox/vimwiki']
However, when I open vimwiki it is only prompting me to open a new wiki on my home folder rather then access the remote one based in Dropbox.
Can anyone please tell me why this is as the code should work from what I have read?
vim dropbox vim-plugin
vim dropbox vim-plugin
asked Mar 23 at 7:22
J.DayJ.Day
156
156
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55311566%2funable-to-link-vimwiki-in-dropbox-to-my-local-machine%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55311566%2funable-to-link-vimwiki-in-dropbox-to-my-local-machine%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown