Skip to content

Instantly share code, notes, and snippets.

View vahidabdi's full-sized avatar
🏠
Working from home

Vahid Abdi vahidabdi

🏠
Working from home
View GitHub Profile
@vahidabdi
vahidabdi / .Xresources
Created February 3, 2019 20:00 — forked from gilbertw1/.Xresources
Hyper Light Drifter Dotfiles
Xft.dpi: 120
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.hintstyle: hintslight
! hightlight - #268BD2
! normal - #ffffff
rofi.color-enabled: true
rofi.color-window: #282a36, #282a36, #6272a4

Keybase proof

I hereby claim:

  • I am vahidabdi on github.
  • I am vahidabdi (https://keybase.io/vahidabdi) on keybase.
  • I have a public key ASCZBkwi4hrbIXYxAiLON5TEEHJF4MIifVEVrmxS6AhY_go

To claim this, I am signing this object:

@vahidabdi
vahidabdi / spacemacs-cheshe.md
Created October 9, 2017 18:17 — forked from robphoenix/spacemacs-cheshe.md
Spacemacs Cheat Sheet

Useful Spacemacs commands

  • SPC q q - quit
  • SPC w / - split window vertically
  • SPC w - - split window horizontally
  • SPC 1 - switch to window 1
  • SPC 2 - switch to window 2
  • SPC w c - delete current window
  • SPC TAB - switch to previous buffer
  • SPC b b - switch buffers
@vahidabdi
vahidabdi / arc_resolver.ex
Last active March 5, 2020 22:02
Arc Uploader resolver for Absinthe Graphql
defmodule MyApp.Schema.ArcResolver do
defmacro __using__([uploader: uploader]) do
quote do
import unquote(__MODULE__), only: [
get_file: 2
]
@__arc_upload unquote(uploader)
end
end