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 / .tmux.conf
Last active January 17, 2023 08:24
tmux config ~/.tmux.conf
unbind C-b
set -g prefix C-space
set -g status-position bottom
set -g status-bg colour234
set -g status-fg colour137
set -g status-left ''
set -g status-right '#[fg=colour=233,bg=colour241,bold] %d/%m #[fg=colour233,bg=colour245,bold] %H:%M:%S'
set -g status-right-length 50
@mwelwankuta
mwelwankuta / config.fish
Last active January 16, 2023 10:40
fish aliases ~/.config/fish
#vim
alias ni="nvim"
alias vim="nvim"
#python
alias py="python3"
@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 / .vimrc
Created November 28, 2021 06:50
vimrc config file
syntax on
set noerrorbells
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set nu
set t_Co=256
set nowrap
@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'