Fork me on GitHub
#proton
<
2016-03-10
>
dvcrn11:03:10

I still catch myself occasionally using vim. Since I'm now so used to proton, I decided to reimplement some basic keys in my vimrc. Check it out if you are interested simple_smile https://github.com/dvcrn/dotfiles/tree/master/vim/nvim

maksim12:03:58

And I moved some my vim bindings to proton 😄

["H" "vim-mode-plus:move-to-first-character-of-line"]
                ["L" "vim-mode-plus:move-to-last-character-of-line"]
                ["U" "vim-mode-plus:redo"]
                [", f" "fuzzy-finder:toggle-file-finder"]
                [", p" "clipboard-plus:toggle"]

sglyon14:03:33

Proton isn’t removing packages associated with layers that I disable

sglyon14:03:55

For example, if I activate lang/clojure it will install clojure related packages (Parifiner et al)

sglyon14:03:11

Then if I remove that layer from my config, nothing happens. All those packages are still installed

sglyon14:03:22

This didn’t used to be the case. Any ideas what’s going on?

geksilla17:03:53

@sglyon: I have same problem. I guess this affected by my last changes. I will take a look.

sglyon17:03:48

OK thanks, if you learn anything let me know!

geksilla18:03:09

sure, I think I've found solution. Need to check it and will send PR.

austincrft19:03:11

@dvcrn I end up using vim a lot too because most of my time is spent in the terminal and it's so quick. How do you get around the lack of macros in Atom? That's my biggest peeve.

dvcrn23:03:54

@austincrft: what kind of macros are you using? I found most of the stuff I want to be there in atom anyway

dvcrn23:03:20

I am using vim lately because of hardmode and hardtime. I want to get rid of the habit of using j j j j instead of 5j and these plugins force me into that simple_smile

austincrft23:03:55

I oft do q a [various vim commands] on a specific line, then select all the lines I want to apply it to, open up ex and do :'<,'>norm! @a

austincrft23:03:09

In general, I find macros to be super useful for refactoring and formatting. But I agree, the j j j j habit is a hard one to break. simple_smile