Skip to content

Instantly share code, notes, and snippets.

View ivomachado's full-sized avatar

Ivo Machado ivomachado

  • TPV
  • Manaus - AM, Brasil
  • 18:21 (UTC -04:00)
View GitHub Profile
@ivomachado
ivomachado / .vimrc
Created May 10, 2018 12:39
Meu vimrc
set nocompatible
if has('nvim')
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
elseif empty(glob('~/.local/share/nvim/site/autoload/plug.vim'))
silent !curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
# Configuration file for libinput-gestures.
#
# The default configuration file exists at /etc/libinput-gestures.conf
# but a user can create a personal custom configuration file at
# ~/.config/libinput-gestures.conf.
#
# Lines starting with '#' and blank lines are ignored. Currently
# "gesture" and "device" configuration keywords are supported as
# described below. The keyword can optionally be appended with a ":" (to
# maintain compatibility with original format configuration files).
@ivomachado
ivomachado / init.ps1
Last active July 22, 2017 21:36
Meu profile do powershell
Set-ExecutionPolicy Bypass
Install-Module PSReadline
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/ivomachado/3a2b1ffd7765a889fecd16573537051f/raw/a306fa00a78ba4662cd42f331569ae2906bf68f3/profile.ps1')) | tee $profile
choco install nodejs -y
choco install mingw -y
choco install jdk8 -y
choco install 7zip -y
choco install VisualStudioCode -y
choco install python2 -y
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->