Skip to content

Instantly share code, notes, and snippets.

View EstebanMarin's full-sized avatar
💭
I may be slow to respond.

EstebanMarin EstebanMarin

💭
I may be slow to respond.
View GitHub Profile
@EstebanMarin
EstebanMarin / init.el
Created July 16, 2021 19:24 — forked from Lukewh/init.el
20210215 - Emacs config for typescript and CRA
(eval-and-compile
(customize-set-variable
'package-archives '(("org" . "https://orgmode.org/elpa/")
("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package)))
@EstebanMarin
EstebanMarin / init.vim
Created December 19, 2018 14:52 — forked from celso/init.vim
Neovim setup for OSX users
syntax on
set ruler " Show the line and column numbers of the cursor.
set formatoptions+=o " Continue comment marker in new lines.
set textwidth=0 " Hard-wrap long lines as you type them.
set modeline " Enable modeline.
set esckeys " Cursor keys in insert mode.
set linespace=0 " Set line-spacing to minimum.
set nojoinspaces " Prevents inserting two spaces after punctuation on a join (J)
" More natural splits
set splitbelow " Horizontal split below current.
@EstebanMarin
EstebanMarin / .vimrc
Last active January 22, 2019 14:40
~/.vimrc
"" ~/.config/nvim/init.vim for neoVim
set nocompatible " required
filetype off " required
filetype plugin on
syntax on
set ruler " Show the line and column numbers of the cursor.
set formatoptions+=o " Continue comment marker in new lines.
set textwidth=0 " Hard-wrap long lines as you type them.
set modeline " Enable modeline.
set linespace=0 " Set line-spacing to minimum.