Skip to content

Instantly share code, notes, and snippets.

@raheelrjunaid
raheelrjunaid / config.lua
Last active June 15, 2023 01:34
My LunarVim Config (2023)
local opts = {}
lvim.log.level = "warn"
lvim.leader = "space"
lvim.colorscheme = "no-clown-fiesta"
lvim.builtin.cmp.experimental.ghost_text = false
lvim.keys.normal_mode["<C-s>"] = ":w<cr>"
lvim.keys.normal_mode["<S-h>"] = ":BufferLineCyclePrev<CR>"
lvim.keys.normal_mode["<S-l>"] = ":BufferLineCycleNext<CR>"
lvim.builtin.alpha.active = true
# Tic Tac Toe by Raheel Junaid
# Date Finished: July 4th
# Full YouTube Series: https://youtube.com/playlist?list=PL3ZaFz0_yUh4KSXM8qXyPjxr_j5uxcG4E
# This Version is commented
from random import randint
class Game:
def __init__(self) -> None: