You are here |
ncona.com | ||
| | | |
sookocheff.com
|
|
| | | | I first learned Vim in university and, since then, it has been a welcome companion for the majority of my software engineering career. Working with Python and Go programs felt natural with Vim and I was always felt productive. Yet Java was always a different beast. Whenever an opportunity to work with Java came up, I would inevitably try Vim for a while, but fall back to IntelliJ and the IdeaVim plugin to take advantage of the rich language features a full-featured IDE can give you. | |
| | | |
dusty.phillips.codes
|
|
| | | | Throughout my career, Ive at least tried most of the available programming editors. More than two decades ago, I heard about the vi-vs-emacs debate, and made a pact with myself to use both for at least a year before deciding which I preferred. I started with vim, switched to emacs after a year, and decided I preferred vim. I joined the sublime-text bandwagon for a year or two in the early 2010s, switched back to vim in the middle of the decade, and eventually did the big switch to vscode. | |
| | | |
www.integralist.co.uk
|
|
| | | | UPDATE November 2022 Not long after I wrote this post I had switched from VimScript to using Lua and also making large sets of changes and tweaks to my configuration. The source of truth is: https://github.com/integralist/nvim (which is a submodule within https://github.com/integralist/dotfiles) This post is being kept for posterity, but ultimately I would recommend you look at the above dotfiles repo instead. This is going to be a very focused post because when you're looking to get your code editor con... | |
| | | |
blog.kulman.sk
|
|
| | I use the same machines to work on both personal and work projects. I usually have to use a different Git identity for the work projects than for my personal projects. Previously I had my personal Git identity set globally and then used local Git configs to override it in work projects. This worked just fine but it was too much work. There is a better solution. Git config allows you to use, or better to say include, another Git config for a specific directory and all its subdirectories. I have all my pro... |