Help me set up vim for linting and a file tree please and some other stuff

This page summarizes the projects mentioned and recommended in the original post on /r/vim

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • awesome-vim

    The Vim plugin shortlist

  • What is driving you to use vim instead of vscode? My sense is that the culture for vim is to have a sense of ownership and understanding of the editor. Therefore there is an expectation of being willing to discover and configure it on your own. With that said, you should check out something like https://github.com/akrawchyk/awesome-vim found by googling awesome vim.

  • ale

    Check syntax in Vim/Neovim asynchronously and fix files, with Language Server Protocol (LSP) support

  • The panel at the bottom is your status line. There are several nice status line plugins like airline, powerline, lightline (what I use). By default it shows basic details like file name, git branch, file type, line and column number, etc. To enable syntax errors and warnings on status line (and all over the file) I use ALE and lightline-ale

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • lightline-ale

    ALE indicator for the lightline vim plugin

  • The panel at the bottom is your status line. There are several nice status line plugins like airline, powerline, lightline (what I use). By default it shows basic details like file name, git branch, file type, line and column number, etc. To enable syntax errors and warnings on status line (and all over the file) I use ALE and lightline-ale

  • nerdtree

    A tree explorer plugin for vim.

  • Vim has a built in file explorer that you can trigger by typing :Explore in normal mode. If you want something nicer you can have a look at NERDTree

  • ultisnips

    UltiSnips - The ultimate snippet solution for Vim. Send pull requests to SirVer/ultisnips!

  • For boilerplate code I personally use UltiSnips. There might be a better plugin for specifically this, but hey, it works!

  • emmet-vim

    emmet for vim: http://emmet.io/

  • It sounds like vim-emmet would be right up your alley. If you don't use a Vim package manager, install it by git cloneing it into a folder named ~/.vim/pack/plugins/start/ on Unix/macOS or $HOME\vimfiles\pack\plugins\start on Windows (create it beforehand if it doesn't exist), then after you've :EmmetInstalled it into your buffer, you can use the , mapping after the ! to write the Emmet expansion for the HTML boilerplate; Emmet expansion is a very useful but quite complex feature and you can read more on it in [https://docs.emmet.io/](Emmet's documentation).

  • ctags

    A maintained ctags implementation

  • Other (built-in) tools for file navigation in Vim include: :h :ls and :h :buffer to navigate in your buffer list (i.e. the files you have loaded); everything listed in [https://vimways.org/2018/death-by-a-thousand-files/](romainl's "Death by a Thousand Files" articles in vimways); using tags by installing universal-ctags to generate the tags then using any of the commands in :h tag to navigate them; setting global marks to files you use often with m[UPPERCASE LETTER] and jumping to them with `[UPPERCASE LETTER]; :h :vimgrep…

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts