Skip to content

Instantly share code, notes, and snippets.

@ashwnacharya
Created April 1, 2025 00:00
Show Gist options
  • Save ashwnacharya/abff5ba74e76b4fa44a6e81350f90d9e to your computer and use it in GitHub Desktop.
Save ashwnacharya/abff5ba74e76b4fa44a6e81350f90d9e to your computer and use it in GitHub Desktop.
My emacs config
;; Don't show the splash screen
(setq inhibit-startup-message t)
;; Turn off the menu bar
(menu-bar-mode -1)
;; Turn off the toolbar
(tool-bar-mode -1)
;; Turn off scrollbar
(scroll-bar-mode -1)
;; Turn on line numbers
(global-display-line-numbers-mode 1)
;; Load the theme
(load-theme 'modus-vivendi t)
;; Configures package management
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
;; Configures helm for file name autocompletion and matching
(use-package helm
:ensure t
:config (helm-mode 1))
;; Configures python-mode
(use-package python-mode
:ensure t
:custom
(python-shell-interpreter "python3"))
;; Configure elpy for python autocompletion
(use-package elpy
:ensure t
:init
(elpy-enable)
:config
(setq elpy-rpc-python-command "python3")
(setq elpy-rpc-timeout 2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment