Skip to content

Instantly share code, notes, and snippets.

View LukeMathWalker's full-sized avatar
🔮
Wondering

Luca Palmieri LukeMathWalker

🔮
Wondering
View GitHub Profile
@LukeMathWalker
LukeMathWalker / init.vim
Last active August 23, 2021 10:15
init.vim - Work
call plug#begin('~/.local/share/nvim/site/plugged')
Plug 'scrooloose/nerdtree'
Plug 'tmhedberg/SimpylFold'
"Git:
Plug 'tpope/vim-fugitive'
"Ctags:
Plug 'craigemery/vim-autotag'
Plug 'ludovicchabant/vim-gutentags'
"Remove swap file pain
Plug 'gioele/vim-autoswap'
@LukeMathWalker
LukeMathWalker / markdown.vim
Created February 2, 2018 07:50
vim-syntax-markdown/syntax/
" Vim syntax file
" Language: Markdown
" Maintainer: drdr.xp@gmail.com
" Borrowed from the one by Tim Pope <vimNOSPAM@tpope.org>
" Filenames: *.markdown
" Last Change: 2015 Sep 21
if exists("b:current_syntax")
finish
endif
@LukeMathWalker
LukeMathWalker / init.vim
Last active May 12, 2018 15:45
NeoVim settings
call plug#begin('~/.local/share/nvim/site/plugged')
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'scrooloose/nerdtree'
Plug 'vim-syntastic/syntastic'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'flazz/vim-colorschemes'
Plug 'easymotion/vim-easymotion'
Plug 'Valloric/YouCompleteMe'