VIM

This repo contains my vim configuration, hope it will be useful for you.

Installation

You will need vim and git to be able to use this configuration.

Normally if you run the install.sh script it will work, but if you have a problem, try to install vim plug and check if your problem is solved.

Since VIM 9.1.0327, vim can now read config from $XDG_CONFIG_HOME/vim

git clone https://git.arka.rocks/Oxbian/vimrc.git ~/config/vim  

Plugins

This config has just the necessary plugins installed:

Themes

Graphics utilities

  • Vim which key show leader keybinds in a GUI.
  • Vim gitgutter to see diff between files with git.
  • Css color preview css colors. (searching better plugins for all viewing all colors codes)

LSP

  • ALE linters, fixers, completion & LSP

Command & keybinds

General

  • <leader>hl remove highlighting

Window

  • Ctrl+h move to the left window,
  • Ctrl+j move to the bottom window,
  • Ctrl+k move to the upper window,
  • Ctrl+l move to the right window,

Buffer

  • <leader>bd close the current buffer,
  • <leader>ba close all the buffers,
  • <leader>bn go to the next buffer,
  • <leader>bp go to the precedent buffer,

Tabs

  • <leader>tn open a new tab,
  • <leader>to close all other tabs,
  • <leader>tc close current tab page,
  • <leader>tm move the tab after another,
  • <leader>t<leader> go to the next tab,
  • <leader>tl toggle between this tab and the last accessed tab,
  • <leader>te open a new tab with the current buffer,

Spell check

  • <leader>ss toggle / untoggle spellchecking,
  • <leader>sn go to the next word to spellcheck,
  • <leader>sp go to the previous word to spellcheck,
  • <leader>sa add a word into the dictionary,
  • <leader>s? show the list of alternatives for the word,

More help at :help spell

Treeview

For help, use :help netrw. Key binds:

  • Ctrl+f open the treeview buffer at the left,

  • gh show/hide hidden files,

  • gp change permission of local file

  • I show netrw banner,

  • j/k movement,

  • - go up one dir,

  • <enter> go down one dir,

  • d create a directory,

  • % create a file,

  • R rename/move a file,

  • D delete a file

Vim Gutter

For help, use :help gitgutter.
Keybinds:

  • <leader>hp go to the previous hunk,
  • <leader>hn go to the next hunk,
  • <leader>hP to preview hunk,
  • <leader>hs to stage hunk,
  • <leader>hu to undo hunk,
  • <leader>ht to toggle GitGutter.

Hunks are the difference between your file and the git file.

ALE (Linter, fixers, completion, LSP)

For help, use :help ALE.
Key binds:

  • <leader>gd go to the definition,
  • <leader>gn go to the next diagnostic,
  • <leader>gp go to the previous diagnostic,
  • <leader>gr go to the reference,
  • <leader>gR rename element,
  • <leader>gy type definition,
  • <leader>gi go to implementation,
  • <leader>gh documentation,
  • <leader>gf format document.

Snippets

TODO in ALE

Linters / fixers & LSP

Linters and fixers needed to be installed for each language used.

Python

For python, you need to have python-lsp-server.

It can be system wide, or just in a virtualenv.

python3 -m venv .venv
source .venv/bin/activate
pip install pyton-lsp-server[all]

Formatter

By default my config add autoformatting on save on each filetype, you just need a LSP server for the filetype.

But if it's not working you could use vim formatting ggvG=, = is vim command for formatting text.

VM

To code on a virtual machine, I use sshfs, it just mount the system of the vm on my machine and tada!

sudo mkdir /mnt/vm
sudo sshfs -o allow_other -p 22 user@localhost:/home/user/ /mnt/vm/
Description
🖹 My vim config.
Readme 1.7 MiB
Languages
Vim Script 100%