Articles tagged 'vim'
Vim is my preferred text editor, and I do most of my writing on markdown. If you haven't used markdown, I encourage you to try it out. Markdown is a simple markup language that is in common use on the internet for static site generators. The syntax...
Read More...
With the release of SourceKit-LSP we can run an LSP server for the Swift programming language. That means that we can take advantage of autocompletion and jump to the definition in our text editors that support connection to an LSP server. I'll show...
Read More...
If you have to reference multiple directories on your ctags do the following.
Install ctags
Generate CTags for all of your projects, from your project's root
this will generate a file tags, add it to the git ignore
Read More...
Why ALE and not Syntastic ? just personal preference, ALE seems to take advantage of the async in Vim 8, just that.
What would we need:
- Install - ESLint
- Have a Vim plugin manager, I prefer/use Plug
- Install - ALE
Step 1.
Installing ESLint...
Read More...
When you see colours displayed on vim, they are defined by highlight rules, and they are applied to groups (in the example below the group is Normal, you can view all of them running: :so $VIMRUNTIME/syntax/hitest.vim
) for example:
Read More...