Skip to content

Instantly share code, notes, and snippets.

@shreyansp
shreyansp / settings.json
Last active March 7, 2024 11:41
VSCode personalisation
// Color customisation complemetry to monokai, and window colors
"workbench.colorCustomizations": {
"activityBar.inactiveForeground": "#f3fef252",
"diffEditor.insertedTextBackground": "#a6e22e2c",
"diffEditor.removedTextBackground": "#f926735d",
"editor.background": "#1c1d18",
},
// VSCode window
"window.title": "${dirty}${rootName}$${separator}${activeEditorShort}",

Dev Terminal Setup

oh-my-zsh

# Install zsh
    $ sudo apt install zsh
    $ zsh --version
    zsh 5.8 (aarch64-unknown-linux-gnu)

# Set default shell to zsh
[merge]
tool = kdiff3
[diff]
guitool = kdiff3
[core]
editor = notepad
autocrlf = true
[user]
name = username
email = user@domain.com
@shreyansp
shreyansp / .bashrc
Created May 14, 2021 07:41
.bashrc
## Colors? Used for the prompt.
#Regular text color
BLACK='\[\e[0;30m\]'
#Bold text color
BBLACK='\[\e[1;30m\]'
#background color
BGBLACK='\[\e[40m\]'
RED='\[\e[0;31m\]'
BRED='\[\e[1;31m\]'
BGRED='\[\e[41m\]'
@shreyansp
shreyansp / .vimrc
Created March 11, 2021 13:51 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@shreyansp
shreyansp / test
Last active February 17, 2021 22:36
[merge]
tool = kdiff3
[diff]
guitool = kdiff3
[core]
editor = notepad
autocrlf = true
[user]
name = xxxx
email = s@p.c