Skip to content

Instantly share code, notes, and snippets.

View Nitheesh-S's full-sized avatar
😀

Nitheesh Nitheesh-S

😀
View GitHub Profile
{
"editor.fontFamily": "Fira Code",
"editor.fontWeight": "400",
"editor.fontSize": 12,
"editor.lineHeight": 18,
"editor.fontLigatures": true,
"editor.tabCompletion": "on",
"editor.hover.delay": 1000,
"editor.occurrencesHighlight": false,
"editor.renderLineHighlight": "gutter",
@Nitheesh-S
Nitheesh-S / vimrc
Created November 24, 2020 18:07
vim config
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin()
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'itchyny/lightline.vim'
@Nitheesh-S
Nitheesh-S / monkeytype.json
Created March 4, 2021 09:56
monkeytype settings
{
"theme": "pulse",
"customTheme": false,
"customThemeColors": [
"#323437",
"#e2b714",
"#e2b714",
"#646669",
"#d1d0c5",
"#ca4754",
{
"basics": {
"name": "Nitheesh",
"label": "Senior Software Engineer",
"image": "https://assets.codepen.io/1667959/internal/avatars/users/default.png?fit=crop&format=auto&height=512&version=1684392735&width=512",
"email": "nitheeshmsk@gmail.com",
"phone": "+91 8608790838",
"url": "https://nitheesh-s.github.io/",
"summary": "",
"profiles": [
@Nitheesh-S
Nitheesh-S / testCaseGenerator.js
Created September 25, 2023 18:52
Test case generator
function generateTestCase(mul, arr) {
let result = []
for (let el of arr) {
for (let i = 1; i <= mul; i++) {
col1 = `${result.length + 1}`
col2 = `test case sentence ${i}`
result.push(`| ${col1} | ${col2} | ${el} |`)
}
}
copy(result.join('\n'))