Fork me on GitHub
#vim
<
2019-08-01
>
dpsutton02:08:24

can anyone give me a second of help? I'm setting up neovim with

Plug 'tpope/vim-fireplace'
Plug 'guns/vim-sexp'
Plug 'tpope/vim-sexp-mappings-for-regular-people'
source vimrc and pluginstall. I expect when editing a clojure file that opening parens are automatically matched with a closing paren but it doesn't seem to work. I'm reading the readme of sexp- and sexp-mfrp and I don't see a way to "enable" these modes in a clojure buffer. I'm coming from an emacs background so maybe that's not even the correct way to think about it

dominicm06:08:14

that isn't 😜 they'll activate themselves.

dominicm06:08:42

is that all is in your vimrc? What does echo &rtp look like?

dpsutton12:08:55

ah, i thought nvim and vim used the same config locations. but rather than /.vimrc its /.config/vim/init.vim . And the plugin location was different as well. kind of a bummer they don't both act the same

xi13:08:14

This is my init.vim:

set rtp^=~/.vim rtp+=~/.vim/after
let &packpath = &runtimepath
so ~/.vimrc

dpsutton13:08:48

rtp = "run time path"?

dpsutton13:08:12

thanks so much. is xi in your username related to the text editor?

xi13:08:00

Nah - my name is Alexis, I've experimented with various abbreviations and this is my current

👍 4