Skip to content

Instantly share code, notes, and snippets.

View mwelwankuta's full-sized avatar
🏠
Working from home

Mwelwa mwelwankuta

🏠
Working from home
View GitHub Profile
@mwelwankuta
mwelwankuta / coc-settings.json
Last active January 15, 2023 06:47 — forked from benawad/coc-settings.json
coc settings ~/.config/nvim/coc-settings.json
{
"suggest.noselect": false,
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"typescript",
"typescriptreact",
"json",
"javascriptreact",
"typescript.tsx",
"graphql",
@mwelwankuta
mwelwankuta / init.vim
Last active February 6, 2023 07:04 — forked from benawad/init.vim
neovim config file
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'
Plug 'ctrlpvim/ctrlp.vim' " fuzzy find files
Plug 'scrooloose/nerdcommenter'