Skip to content

Instantly share code, notes, and snippets.

View lovung's full-sized avatar
🇻🇳
Vietnamese

Vu Long (Drake) lovung

🇻🇳
Vietnamese
View GitHub Profile
@lovung
lovung / initv2.vim
Last active July 20, 2021 15:27
New init.vim generate from https://vim-bootstrap.com/ with customization
" vim-bootstrap
"*****************************************************************************
"" Vim-Plug core
"*****************************************************************************
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim')
if has('win32')&&!has('win64')
let curl_exists=expand('C:\Windows\Sysnative\curl.exe')
else
let curl_exists=expand('curl')
@lovung
lovung / init.vim
Last active August 13, 2020 06:13
Example init.vim for neovim
call plug#begin('~/.vim/plugged') " Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
" code
Plug 'pangloss/vim-javascript'
" linters
Plug 'w0rp/ale'
" helpers
"Plug 'scrooloose/nerdtree'
Plug 'easymotion/vim-easymotion'
@lovung
lovung / .vimrc
Last active July 20, 2020 06:25
Example vimrc for Golang and Flutter developer
call plug#begin('~/.vim/plugged')
" Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
" code
Plug 'pangloss/vim-javascript'
" linters
Plug 'w0rp/ale'
" helpers
"Plug 'scrooloose/nerdtree'