Skip to content

Instantly share code, notes, and snippets.

View onimenotsuki's full-sized avatar
🎯
Focusing

Edgar Talledos Robledos onimenotsuki

🎯
Focusing
View GitHub Profile
@onimenotsuki
onimenotsuki / layout.jsx
Created August 2, 2019 18:30
Layout inicial para remover margen con emotion
/**
* Layout component that queries for data
* with Gatsby's useStaticQuery component
*
* See: https://www.gatsbyjs.org/docs/use-static-query/
*/
import React from 'react';
import PropTypes from 'prop-types';
import { useStaticQuery, graphql } from 'gatsby';
@onimenotsuki
onimenotsuki / index.jsx
Created August 2, 2019 18:20
Configuración inicial de material componentes web react con gatsbyjs
import React from 'react';
import { Link } from 'gatsby';
/* Material Components */
import { Cell, Grid, Row } from '@material/react-layout-grid';
import Layout from '../components/layout';
import Image from '../components/image';
import SEO from '../components/seo';
@onimenotsuki
onimenotsuki / .gitignore
Created August 1, 2019 19:51
My new personal for git
# -*- mode: gitignore; *-*
############################################
## Ignoring files generated for emacs ##
############################################
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
@onimenotsuki
onimenotsuki / .conkyrc
Created August 1, 2019 19:50
My personal configuration for conky
conky.config = {
-------------------------------------
-- Generic Settings
-------------------------------------
background=true,
update_interval=1,
double_buffer=true,
no_buffers=true,
imlib_cache_size=10,
@onimenotsuki
onimenotsuki / i3.config
Created August 1, 2019 19:44
My new configuration
# i3 config file v4
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
set $mod Mod4
# setup color
set $col1 #277a6d
set $col2 #1c574d
set $col3 #dddddd
set $col4 #1199aa
set $col5 #1180aa
@onimenotsuki
onimenotsuki / rofi.config
Created August 1, 2019 19:43
My new configuration
! ------------------------------------------------------------------------------
! ROFI Settings
! ------------------------------------------------------------------------------
! General
rofi.font: DejaVu Sans Mono 9
rofi.fake-transparency: true
rofi.hide-scrollbar: true
rofi.bw: 2
! Layout
@onimenotsuki
onimenotsuki / dunstrc
Created August 1, 2019 19:43
My new configuration
[global] ### Display ###
# Which monitor should the notifications be displayed on.
monitor = 0
# Display notification on focused monitor. Possible modes are:
# mouse: follow mouse pointer
# keyboard: follow window with keyboard focus
# none: don't follow anything
#
@onimenotsuki
onimenotsuki / .zshrc
Created August 1, 2019 19:42
My new configuration
source ~/antigen/antigen.zsh
# Update antigen
antigen update
# Load the oh-my-zsh library
antigen use oh-my-zsh
# Bundles from the default repo
antigen bundle git
@onimenotsuki
onimenotsuki / .zshenv
Created August 1, 2019 19:41
New configuration for my dots
export TERM="xterm-256color"
# Development env vars
export BROWSER="chromium"
# Robomongo
export ROBOMONGO_DIR="$HOME/.robomongo/bin"
# Node Version Manager (NVM)
export NVM_DIR="$HOME/.nvm"
module.exports = {
siteMetadata: {
title: 'Gatsby Default Starter',
description: 'Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.',
author: 'Edgar Talledos Robledos',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-filesystem',