This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: |