Personal Settings

Personal Settings. Such as zshrc/vimrc. ### zshrc

1
2
3
4
5
6
7
8
9
alias c="clear"

alias up="sudo pacman -Syu"
alias ins="sudo pacman -S"
alias uins="sudo pacman -R"

alias re=reboot
alias po=poweroff

vimrc

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
set number
syntax on
set cursorline

set nocompatible

set showmode
set showcmd


filetype on
filetype indent on
filetype plugin on

set autoindent smartindent

set tabstop=4
set expandtab
set shiftwidth=4
set laststatus=2

set ruler
set showmatch

set noerrorbells