Giter VIP home page Giter VIP logo

dot_vim's People

Contributors

binaryphile avatar derfel avatar fl4t avatar jankei avatar liminal avatar mayanksuman avatar mutewinter avatar padi avatar rekendahl avatar tom-kuca avatar wadkar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dot_vim's Issues

auto-pairs

say have you ever considered using a plugin which automatically completes quotes and other pairs? I'm trying out jiangmiao/auto-pairs. just started so i don't have a recommendation but I recently realized it's one of the features I miss from other editors.

setup missing info

There are a couple of issues with the setup instructions:

  • your username is hardcoded in the git clone command
  • the instructions don't mention that you have to manually install vundle before starting vim and running :BundleInstall

tcomment syntax is deprecated

tcomment: tcommentMapLeaderOp1 is deprecated; please use g:tcomment_opleader1 instead; your setting might be ignored
tcomment: tcommentMapLeader1 is deprecated; please use g:tcomment_mapleader1 instead; your setting might be ignored
tcomment: tcommentMapLeader2 is deprecated; please use g:tcomment_mapleader2 instead; your setting might be ignored

I just can't find time to make it work, sorry. :(

Vim errors on startup if Dash isn't installed

Just FYI, it took me a little bit to track this down, but I was getting an error when starting Vim if Dash wasn't installed first. I'd send a pull-request to update the readme but I wasn't sure if you'd consider Dash an actual requirement or not.

leaving vim changes xterm cursor

Not sure if this is just me, but leaving vim will change the xterm block cursor to an ibar.
Not exactly a mind-blowing issue, but I thought that someone might know how to get vim to not mess with xterm's block cursor.

Fantastic project by the way, love it!

Quickfixsigns interacts poorly with :Glog command from fugitive

The quickfixsigns plugin interacts poorly with the :Glog command from fugitive, wanting a line number that :Glog isn't supplying. This results in many lines of error messages, one per log entry. Even worse, those error messages are repeated every time you do a :cnext command (or equivalent mapping), making it painful to use fugitive.

https://gist.github.com/1714107 shows the results of running :Glog on the vimrc file from https://github.com/mutewinter/dot_vim.

Possible fixes might involve patching quickfixsigns not to complain when lnum = 0 -- the following patch to quickfixsigns seems to work:

diff --git a/plugin/quickfixsigns.vim b/plugin/quickfixsigns.vim
index 9215b34..79f384e 100755
--- a/plugin/quickfixsigns.vim
+++ b/plugin/quickfixsigns.vim
@@ -614,9 +614,9 @@ function! s:PlaceSign(class, sign, list) "{{{3
                     endif
                 endif
             else
-                echohl WarningMsg
-                echom "Quickfixsigns PlaceSign: Invalid lnum:" string(item)
-                echohl NONE
+                "echohl WarningMsg
+                "echom "Quickfixsigns PlaceSign: Invalid lnum:" string(item)
+                "echohl NONE
             endif
         endfor
     finally

Another fix would, of course, be removing quickfixsigns from the installed bundles list, though that might be overkill considering a 3-line patch is enough to solve the problem.

Cannot find color scheme 'jellybeans'

Hello,

I'm on OS X 10.12.6 and using nvim installed with Homebrew. After installing with:

git clone http://github.com/mutewinter/dot_vim.git ~/.config/nvim.
cd ~/.config/nvim.

I get the following error when starting nvim:

Error detected while processing /Users/rms/.config/nvim/config.vim:
line    9:
E185: Cannot find color scheme 'jellybeans'
Press ENTER or type command to continue

I've checked in the ~/.config/nvim/plug_plugins folder and I do see the jellybeans.vim directory.

Am I doing something wrong?

Thank you.

tmux navigator bindings in terminal

Hi, thanks for this awesome treasure trove of vim goodies.

I'm trying to track down an issue with vim navigation from within tmux and I was wondering if you'd be willing to share the tmux config file you're using in conjunction with this repo.

Namely, I'm wondering how you got the alt/meta key to work from the Terminal with these tmux navigator bindings:

nnoremap <silent> <M-h> :TmuxNavigateLeft<cr>
nnoremap <silent> <M-j> :TmuxNavigateDown<cr>
nnoremap <silent> <M-k> :TmuxNavigateUp<cr>
nnoremap <silent> <M-l> :TmuxNavigateRight<cr>

License missing?

Would it be possible to add a license to the repo so we can be sure under which conditions we're actually allowed to copy and/or reuse the code here?

Windows Cygwin install issues

@mutewinter thank you for a great setup. I just (for now) switched to it from spf13 (which I also like). Main reason for switch is that YouCompleteMe doesn't seem to work under spf13 but works here.

I have no issues installing this on my mac but would like to install it on 1) Windows 7 under cygwin and later CentOS 5/6.

When I try to run vim "+mkspell ~/.vim/spell/custom.en.utf-8.add" +PluginInstall +qall I get the following errors:

Error detected while processing /home/Robert Ekendahl/.vim/vundle.vim:
line   18:
E172: Only one file name allowed: source /home/Robert Ekendahl/.vim/vundle_plugins/ag.vim
Error detected while processing /home/Robert Ekendahl/.vim/config.vim:
line    9:
E185: Cannot find color scheme 'jellybeans'
Error detected while processing /home/Robert Ekendahl/.vim/plugins.vim:
line    3:
E172: Only one file name allowed: source /home/Robert Ekendahl/.vim/vundle_plugins/ag.vim
Press ENTER or type command to continue

It then simply installs ag.vim :-(

It would be great if this could be installed on Windows and under cygwin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.