Skip to content

Instantly share code, notes, and snippets.

View Sov-trotter's full-sized avatar
:octocat:
Building

Arsh Sharma Sov-trotter

:octocat:
Building
View GitHub Profile
#!/usr/bin/env julia
using Luxor, Colors, Combinatorics
mutable struct Ball
id::Int
position::Point
velocity::Point
color::Color
ballradius::Float64
@Sov-trotter
Sov-trotter / init.vim
Created December 15, 2020 16:29 — forked from TheCedarPrince/init.vim
My (neo)Vim Configuration File
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" VIM SETTINGS
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" TURNS LINE NUMBERING ON
set nu
" trigger `autoread` when files changes on disk
set autoread
autocmd FocusGained,BufEnter,CursorHold,CursorHoldI * if mode() != 'c' | checktime | endif