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

Can't get to work at all

Open jamiis opened this issue 6 years ago • 4 comments

I am unsure what else to try. Here is my vimrc. Notably I have

filetype plugin indent on

and

set rtp+=~/.vim/bundle/vim-colorschemes/
set t_Co=256
" note: using Atom terminal color scheme for iTerm2
" (https://github.com/mbadolato/iTerm2-Color-Schemes/blob/master/schemes/Atom.itermcolors)
colorscheme herald
if has("syntax")
  syntax enable
endif

I have verified that the Vundle installation executed successfully

jamis@Jamiss-MBP:~/src/dotfiles$ tree ~/.vim/bundle/vim-solidity/
/Users/jamis/.vim/bundle/vim-solidity/
├── LICENSE
├── README.md
├── ftdetect
│   └── solidity.vim
├── ftplugin
│   └── solidity.vim
├── indent
│   └── solidity.vim
└── syntax
    └── solidity.vim

4 directories, 6 files](url)

Am I missing something major? Something conflicting in my vimrc? Maybe a conflicting Vundle plugin?

jamiis avatar Jan 15 '19 21:01 jamiis

I have no problem installing through Pathogen.

skmgoldin avatar May 11 '19 20:05 skmgoldin

Also can't make it work with Vundle. But with Pathogen it works fine.

StillFantastic avatar Jul 18 '19 09:07 StillFantastic

add this line in file ~/.vim/bundles.vim before the last line "filetype plugin indent on" filetype off

AthrunArthur avatar Aug 01 '19 03:08 AthrunArthur

something in my .vimrc was screwing it up. I use Vundle. anyway this is what fixed it at the very end of my .vimrc shrug filetype off filetype plugin indent on

jamiis avatar Mar 02 '21 04:03 jamiis