vim-fish icon indicating copy to clipboard operation
vim-fish copied to clipboard

HOW TO INSTALL?

Open orefalo opened this issue 12 years ago • 9 comments

I am sorry, but this is a basic question - not an issue

How on hell do you install this project in VIM?

For the novice it is far from trivial looking at the readme. Please provide directions. I use spf13, anything special I should do?

Thank you

orefalo avatar Nov 12 '13 15:11 orefalo

According to https://github.com/spf13/spf13-vim#adding-new-plugins it seems you need to put

Bundle 'dag/vim-fish'

in ~/.vimrc.bundles.local.

I'll see about adding generic instructions to the README, so I'll leave this open.

dag avatar Nov 12 '13 18:11 dag

Tks, then a vim restart and :BundleInstall

orefalo avatar Nov 12 '13 18:11 orefalo

hum.. still it doesn't work - vim does apply colorization to my .fish scripts.

orefalo avatar Nov 12 '13 19:11 orefalo

May need to restart after :BundleInstall.

dag avatar Nov 12 '13 20:11 dag

yep, it works - but no colorization, right? keywords are underlined

also what does this mean? it's chinese to me

To make the folds more pleasant to work with you might also want to tweak settings like foldlevelstart and foldminlines, which you could do either globally in your ~/.vimrc or locally as described above.

What are the customization parameters than can be applied to .vim/ftplugin/fish.vim

For now mine looks as

syntax enable
filetype plugin indent on


compiler fish

 setlocal textwidth=79

 setlocal foldmethod=expr

orefalo avatar Nov 12 '13 20:11 orefalo

You don't want

syntax enable
filetype plugin indent on

in ~/.vim/ftplugin/fish.vim, and in fact this is probably done for you by spf13 already.

dag avatar Nov 12 '13 22:11 dag

Does this package support Vundle (in my .vimrc)? Sorry for commenting on a... 6 year old issue, but it was my question =)

tommyjcarpenter avatar May 28 '19 17:05 tommyjcarpenter

I have both Vim version 8.1.1550 and NVIM v0.4.3 on MacOS 10.14.6

I wrote the following lines in my .vimrc file as recommended enter link description here

set nocompatible
filetype off

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

Bundle 'gmarik/vundle'
Bundle 'dag/vim-fish'

filetype plugin indent on    " required
highlight LineNr ctermfg=grey

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

As indicated here, I also created a ~/.vim/ftplugin/fish.vim file and inserted the following in it:

" Set up :make to use fish for syntax checking.
compiler fish

" Set this to have long lines wrap inside comments.
setlocal textwidth=79

" Enable folding of block structures in fish.
setlocal foldmethod=expr

However I don't have highlighting for the following fish_prompt.fish file when opening it with vim

function fish_prompt
    set_color $fish_color_cwd
    echo ' [' (prompt_pwd) ' ] > '
end

bjce avatar Apr 25 '20 18:04 bjce

I'd like to revist whether this plugin supports Vundle; if so a blurb about install instructions in the main README would be great.

tommyjcarpenter avatar Apr 27 '20 13:04 tommyjcarpenter