Skip to content

Instantly share code, notes, and snippets.

View navnit75's full-sized avatar
💭
Studying

Navnit Kumar navnit75

💭
Studying
View GitHub Profile
@navnit75
navnit75 / .vimrc
Last active July 21, 2022 09:22
Vim rc for ubuntu purposes
au GUIEnter * simalt ~x
set hls
set is
set cb=unnamed
set gfn=Fixedsys:h10
set ts=4
set sw=4
set si
@navnit75
navnit75 / zsh.md
Last active October 29, 2023 16:57
Setting Up zsh

I have used

  • Tutorial to come up with these commands.
  1. Start with installing zsh and cloning oh-my-zsh repo. ( To make ZSH the default shell will be automatically asked ).
sudo apt update
sudo apt install zsh -y
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  1. My personal favourite theme is Powerlevel10k you can choose yours, by going on oh-my-zsh home page.
  • Clone below mentioned repo
@navnit75
navnit75 / Important_Linux_Commands.md
Last active December 28, 2022 01:09
Useful Linux Commands

IMPORTANT LINUX COMMANDS

Process based Commands

  • Killing process with partial name
$ pkill -f <partial_name>
  • Listing all the process
$ ps -e