Skip to content

Instantly share code, notes, and snippets.

View hackorum's full-sized avatar
🎯
Focusing

Neil Sabde hackorum

🎯
Focusing
  • ~/Earth
View GitHub Profile
This file has been truncated, but you can view the full file.
A
a
aa
aal
aalii
aam
Aani
aardvark
aardwolf
Aaron
(scroll-bar-mode -1) ; Disable visible scrollbar
(tool-bar-mode -1) ; Disable the toolbar
(tooltip-mode -1) ; Disable tooltips
(set-fringe-mode 10) ; Give some breathing room
(setq ring-bell-function 'ignore)
(menu-bar-mode -1) ; Disable the menu bar
(set-face-attribute 'default nil :font "Liga SFMono Nerd Font" :height 150)
;; Make ESC quit prompts
require('packer').startup(function()
use 'wbthomason/packer.nvim'
use {'dracula/vim', as = 'dracula'}
use {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
event = 'BufWinEnter', -- BufRead doesn't work
config = function()
return require'nvim-treesitter.configs'.setup {
ensure_installed = {"javascript", "html", "lua"},
import os
def main():
project_name = input('Name of new project: ')
os.system('mkdir ~/code/python/' + project_name + ' && cd ~/code/python/' +
project_name + '&& git init && touch app.py && nvim app.py ')
main()
import random
randomNumber = random.randint(0, 9)
chancesLeft = 5
yellow = '\033[33m'
red = '\033[31m'
green = '\033[32m'
reset = '\033[m'