diff --git a/london/.config/sublime-text-3/Packages/User/Preferences.sublime-settings b/london/.config/sublime-text-3/Packages/User/Preferences.sublime-settings index bcc05aa..e990dad 100644 --- a/london/.config/sublime-text-3/Packages/User/Preferences.sublime-settings +++ b/london/.config/sublime-text-3/Packages/User/Preferences.sublime-settings @@ -2,7 +2,7 @@ "auto_complete_delay": 20, "color_scheme": "Monokai Pro (Filter Spectrum).sublime-color-scheme", "font_face": "Iosevka Regular", - "font_size": 12, + "font_size": 13, "ignored_packages": [ "Rust", diff --git a/london/.emacs.d/.gitignore b/london/.emacs.d/.gitignore new file mode 100644 index 0000000..437a617 --- /dev/null +++ b/london/.emacs.d/.gitignore @@ -0,0 +1,51 @@ +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + +session.* +.cache/ diff --git a/london/.emacs.d/init.el b/london/.emacs.d/init.el new file mode 100644 index 0000000..fb3d38b --- /dev/null +++ b/london/.emacs.d/init.el @@ -0,0 +1,54 @@ +;; Mostly following along with System Crafter's videos. +;; So this will look pretty familiar. +(setq inhibit-startup-message t) + +(scroll-bar-mode -1) +(tool-bar-mode -1) +(tooltip-mode -1) +(set-fringe-mode 10) + +(menu-bar-mode -1) + +(set-face-attribute 'default nil :font "IBM Plex Mono" :height 120) + +;; Packages stuff. +(require 'package) + +(setq package-archives '(("melpa" . "https://melpa.org/packages/") + ("org" . "https://orgmode.org/elpa") + ("elpa" . "https://elpa.gnu.org/packages"))) + +(package-initialize) +(unless package-archive-contents + (package-refresh-contents)) + +(unless (package-installed-p 'use-package) + (package-install 'use-package)) + +(require 'use-package) +(setq use-package-always-ensure t) + +(use-package monokai-pro-theme + :ensure t + :config + (load-theme 'monokai-pro-spectrum t)) + +(use-package treemacs + :ensure t + :defer t + :ini + :bind (:map global-map + ("M-0" . treemacs-select-window) + ("C-x t t" . treemacs))) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages '(treemacs use-package monokai-pro-theme))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) diff --git a/london/.zshrc b/london/.zshrc index 97e4196..c3da1c7 100644 --- a/london/.zshrc +++ b/london/.zshrc @@ -22,7 +22,8 @@ export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion export GOPATH="/home/gsimmer/Projects/go" -export PATH="/home/gsimmer/.local/bin:$GOPATH/bin:$PATH" +export CARGOPATH="/home/gsimmer/.cargo/bin" +export PATH="/home/gsimmer/.local/bin:$GOPATH/bin:$CARGOPATH:$PATH" # Starship init. #eval "$(starship init zsh)"