My Linux Mint Init Setup
Publish date: Oct 4, 2023
Last updated: Aug 8, 2024
Last updated: Aug 8, 2024
Appearance
- Use dark theme
- Use large text in accessibility
- Change panel height to 60
Update key bindings
- Super + Enter for terminal
- Super + B for browser
- Super + Shift + C for close window
These key bindings contradicts with codium.
- Remove Control + Shift + Alt + Up
- Remove Control + Shift + Alt + Down
- In Settings/Windows/Behavior change special key to move and resize windows to Super
Install apps
- inkscape
- gimp
- friction 2d
- kdenlive
- vlc
- ffmpeg
- vscodium
- git
- rofi
- vim
- hugo
- golang
friction 2d
rofi
Key bindings
- Super + P for
rofi -show run
- Alt + Tab for
rofi -show window
vim
Config
" Show line numbers
set number
" Status bar
set laststatus=2
"The width of a TAB is set to 4.
" Still it is a \t. It is just that
" Vim will interpret it to be having
" a width of 4.
set tabstop=4
" Indents will have a width of 4.
set shiftwidth=4
" Sets the number of columns for a TAB.
set softtabstop=4
" Expand TABs to spaces
set expandtab
" Determines the indentation based on the file type.
filetype plugin indent on
Plugins
Emmet
- Download emmet-vim.
git clone https://github.com/mattn/emmet-vim.git
-
Create .vim folder
-
Copy plugin
cp plugin/emmet.vim ~/.vim/plugin/
cp autoload/emmet.vim ~/.vim/autoload/
cp -a autoload/emmet ~/.vim/autoload/
Install hugo
-
Extract.
tar xvfz hugo.tar.gz
- Move hugo to bin.
sudo mv hugo /usr/bin