Crafting my Workspace

Hosenur published this article 09/19/2023

We all have been there, setting up a new machine, and installing all the tools we need to get our work done. I have been using a MSI Modern 15 Notebook as my daily driver and recently got Fedora installed in it. I have been using Windows before due to some hardware compatibility issues, but now they were fixed and having a Linux distro installed I did what every Linux Enthusiast would do - Rice it up. Rice Here is a list of all the stuffs I install .

GNU Bash~/.zshrc
1export ZSH="$HOME/.oh-my-zsh"
2ZSH_THEME="diamond"
3plugins=(git web-search zsh-autosuggestions zsh-syntax-highlighting zoxide vscode)
4source $ZSH/oh-my-zsh.sh
Lua~/.config/wezterm/wezterm.lua
1return {
2 color_scheme = "Catppuccin Mocha", -- or Macchiato, Frappe, Latte
3 tab_bar_at_bottom = true,
4 use_fancy_tab_bar = false,
5 initial_cols=200,
6 initial_rows=200,
7 window_decorations = "RESIZE"
8}