This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" test.vim | |
" usage: nvim --clean -u test.vim | |
set nocompatible hidden laststatus=2 | |
if !filereadable('/tmp/plug.vim') | |
silent !curl --insecure -fLo /tmp/plug.vim | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Plots, Distributions | |
theme(:juno) # sets theme and resets all attributes of the Plots package | |
gr( | |
xlims=[-10,10], | |
ylims=[-10,10], | |
aspect_ratio=:equal, | |
framestyle=:grid, | |
fillalpha=0.3, | |
leg=false, | |
size=(1200,800), |