Skip to content

Instantly share code, notes, and snippets.

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

Jan Bronicki John15321

🏠
Working from home
View GitHub Profile
@John15321
John15321 / my_aliases
Last active January 17, 2022 12:00
A list of my aliases and zsh configuration
# MY_SHELL_CONFIG="~/.my-shell-config"
INSTANCE_ALIASES="$MY_SHELL_CONFIG/instance_specific_aliases"
if [ ! -e $INSTANCE_ALIASES ]
then
touch $INSTANCE_ALIASES
echo "# Here you can put your aliases specific to this machine" >> $INSTANCE_ALIASES
fi
lvim.log.level = "debug"
--[[
lvim is the global options object
Linters should be
filled in as strings with either
a global executable or a path to
an executable
]]
-- THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT
@John15321
John15321 / ohmyzsh.md
Created February 27, 2021 00:44 — forked from yovko/ohmyzsh.md
ZSH (using Oh My ZSH) on Manjaro Linux

ZSH (using Oh My ZSH) on Manjaro Linux

0. If ZSH is not already installed on your Manjaro system you can do it with the command:

sudo pacman -Syu zsh

You do not need to install manjaro-zsh-config and all the other related packages like zsh-syntax-highlighting, zsh-history-substring-search, zsh-autosuggestions, etc., as we will use Oh My Zsh.

@John15321
John15321 / init.vim
Created January 17, 2021 22:02 — forked from benawad/init.vim
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'scrooloose/nerdtree'
"Plug 'tsony-tsonev/nerdtree-git-plugin'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'