Daily Shaarli

All links of one day in a single page.

December 1, 2019

a11y.css | Green Effect

This tool highlight error on accessibility

SVGOMG - SVGO's Missing GUI

Optimiser les SVG

Un wrapminou
Software disenchantment @ tonsky.me
lit-html

An Javascript library for HTML templates.

[DEVFEST Lille 2019] Le Web,ses frameworks et ses standards: déconstruire pour mieux (re?)construire - YouTube

Oui !

GitHub - airblade/vim-gitgutter: A Vim plugin which shows a git diff in the gutter (sign column) and stages/undoes hunks and partial hunks.

A plugin which marks new, modified and deleted lines on the left side of the window.

Moreover, it can automatically stage hunks

  • stage the hunk with hs or
  • undo it with hu.

More informations are on the README. This is awesome.

My GitGutter conf in .vimrc:

" Icons for gitgutter
let g:gitgutr_sign_added                = '+'
let g:gitgutter_sign_modified           = '>'
let g:gitgutter_sign_removed            = '—'
let g:gitgutter_sign_removed_first_line = '^'
let g:gitgutter_sign_modified_removed   = '<'
set updatetime=200
highlight GitGutterAdd    guifg=#009900 ctermfg=2
highlight GitGutterChange guifg=#bbbb00 ctermfg=3
highlight GitGutterDelete guifg=#ff2222 ctermfg=1