Skip to content

Instantly share code, notes, and snippets.

@nedclimax
nedclimax / setup.ps1
Last active March 7, 2024 13:04
Powershell setup script
set-executionpolicy unrestricted -s cu
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
# Utils
scoop install aria2 7zip git busybox make
start "$env:USERPROFILE\scoop\apps\7zip\current\install-context.reg"
# Nerd Fonts
scoop bucket add nerd-fonts
@nedclimax
nedclimax / .emacs
Last active September 19, 2023 14:11
poopy emacs configuration
(require 'cc-mode)
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(tool-bar-mode 0)
(menu-bar-mode 0)
(scroll-bar-mode 0)
(column-number-mode 1)
(if (eq system-type 'windows-nt)