Skip to content

Instantly share code, notes, and snippets.

View jorgepiloto's full-sized avatar
🐺
Indomable

Jorge Martínez jorgepiloto

🐺
Indomable
View GitHub Profile
@codewithrajranjan
codewithrajranjan / VIM Settings
Created August 17, 2018 20:40
This is the the .vimrc setting to configure vim
"###############################################################################
" Genreal settings
"###############################################################################
set backspace=2
syntax on
set autoindent
set shiftwidth=4
set softtabstop=4
set expandtab
set number
@meskarune
meskarune / vimrc
Last active November 3, 2023 07:58
simple functional vim status line - jellybeans theme colors
" status bar colors
au InsertEnter * hi statusline guifg=black guibg=#d7afff ctermfg=black ctermbg=magenta
au InsertLeave * hi statusline guifg=black guibg=#8fbfdc ctermfg=black ctermbg=cyan
hi statusline guifg=black guibg=#8fbfdc ctermfg=black ctermbg=cyan
" Status line
" default: set statusline=%f\ %h%w%m%r\ %=%(%l,%c%V\ %=\ %P%)
" Status Line Custom
let g:currentmode={
@chsasank
chsasank / ipynb_to_gallery.py
Last active February 21, 2024 14:29
Convert jupyter notebook to sphinx gallery notebook styled examples.