Skip to content

Instantly share code, notes, and snippets.

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

Mwelwa Nkuta mwelwankuta

🏠
Working from home
View GitHub Profile
@mwelwankuta
mwelwankuta / config.yaml
Last active April 12, 2025 20:19
My GlazeWM configuration file
# Colors
mauve: &mauve "#cba6f7"
mauve: &mauve "#cba6f7"
touMing: &touMing "#00000000"
crust: &crust "#11111b"
general:
# Commands to run when the WM has started. This is useful for running a
# script or launching another application.
@mwelwankuta
mwelwankuta / config.lua
Last active April 10, 2025 20:53
My Lunarvim Config
-- Read the docs: https://www.lunarvim.org/docs/configuration
-- Example configs: https://github.com/LunarVim/starter.lvim
-- Video Tutorials: https://www.youtube.com/watch?v=sFA9kX-Ud_c&list=PLhoH5vyxr6QqGu0i7tt_XoVK9v-KvZ3m6
-- Forum: https://www.reddit.com/r/lunarvim/
-- Discord: https://discord.com/invite/Xb9B4Ny
--
vim.opt.relativenumber = true
@mwelwankuta
mwelwankuta / config.yaml
Created February 8, 2025 09:48
Tabby Windows Terminal Config
version: 7
profiles: []
groups: []
configSync:
parts: {}
hotkeys:
toggle-window: []
copy-current-path: []
ctrl-c:
- Ctrl-C
# Config generated by Ghostty Config (https://github.com/zerebos/ghostty-config)
title = Mwelwa was here...
background-opacity = 0.96
background-blur-radius = 14
theme = AlienBlood
bold-is-bright = true
background = #0f1610
foreground = #637d75
selection-background = #1d4125
@mwelwankuta
mwelwankuta / .tmux.conf
Last active February 8, 2025 01:34
My 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 ''
@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'