Giter Club home page Giter Club logo

unix-setup's Introduction

Configuration and Tools for Unix environments

General setup

Ubuntu Theme

  1. Install Yaru-Blue theme by cloning this repo:
    git clone https://github.com/Jannomag/Yaru-Colors.git
    Then run the install.sh script in the repo and follow the instructions. Only install the theme and omit to install the icon pack. Also, skip activating the theme, we will do that later. Install gnome tweaks and shell extensions:
    sudo apt install gnome-shell-extensions gnome-shell-extension-prefs gnome-tweaks
  2. Install the user themes shell extension by heading to this website (you need to have the shell extension browser addon installed)
    https://extensions.gnome.org/extension/19/user-themes/
  3. Now open the "Extensions" app and activate "User Themes"
  4. Open the "Tweaks" app, and under "Appearance" select the Yaru-Blue-Dark theme for Applications and Shell. While you are here, also switch the Caps-Lock and Esc keys and set a custom wallpaper for the Desktop and Lockscreen

Fonts

  1. Install GNOME's font manager:
    sudo apt install font-manager
  2. Then download and install JetBrains Mono Nerd Font: https://www.nerdfonts.com/font-downloads.

Chrome over scroll history navigation

  1. Edit the Chrome desktop file /usr/share/applications/google-chrome.desktop and append the following flag to all Exec= .. lines (should be three):
    --enable-features=TouchpadOverscrollHistoryNavigation
  2. To persist this, copy /usr/share/applications/google-chrome.desktop to ~/.local/share/applications
    cp /usr/share/applications/google-chrome.desktop ~/.local/share/applications/

Python setup

Download and install mambaforge: https://github.com/conda-forge/miniforge#mambaforge.

CLI setup

Kitty

  1. Install Kitty according to the official documentation https://sw.kovidgoyal.net/kitty/binary/.

    curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin
  2. Make sure to integrate it into GNOME properly by creating a .desktop file, as the doc explains.

  3. Lastly, copy the Kitty configuration from this repo into your .config folder

Neovim

  1. Head over to https://github.com/neovim/neovim/releases/tag/stable and download the latest AppImage.
  2. Make it executable:
    chmod u+x ./nvim.appimage
    
  3. Then move it to a folder indexed in your $PATH:
    sudo mv nvim.appimage /usr/local/bin/nvim
    
  4. Also install neovim python support for your system interpreter:
sudo apt-get install python3-neovim

As well as your mamba/conda base environment:

python3 -m pip install --user --upgrade pynvim
  1. copy the .config/nvim folder from this repo into your home directory and run nvim to install all plugins.
  2. As a last step, you may want to install Python and C++ Lsp servers using Mason. Simply type <space>+c+m to open the Mason menu and install them.

ZSH

  1. Install zsh:
    sudo apt install zsh
    
  2. Install oh-my-zsh:
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  3. Download plugins:
    git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
    git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git \
      ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting
    git clone https://github.com/jeffreytse/zsh-vi-mode $ZSH_CUSTOM/plugins/zsh-vi-mode
    ( cd $ZSH_CUSTOM/plugins && git clone https://github.com/chrissicool/zsh-256color )
  4. Then copy the .zshrc from this repo into your home directory.
  5. Now you can initialize mamba/conda
    mamba init zsh 
    
  6. Afterwards, check your .zshrc to see if everything worked out and there are no duplicates. Make sure to comment the following lines in .zshrc if you are using ROS:
    #        . "/home/adrian/mambaforge/etc/profile.d/conda.sh"
    as well as this line:
    #    . "/home/adrian/mambaforge/etc/profile.d/mamba.sh"

Exa

Install Exa, check its repo first: https://github.com/ogham/exa

sudo apt install exa

Bat

Install bat, a better alternative for cat:

sudo apt install bat

This command may install bat as batcat, so check for that. If this problem occurs, you can fix it using the following:

mkdir -p ~/.local/bin
ln -s /usr/bin/batcat ~/.local/bin/bat

Autojump

Clone and install autjump as explained here: https://github.com/wting/autojump Check compatibility with zsh!

Starship Prompt

  1. Download and install Starship shell prompt:
    curl -sS https://starship.rs/install.sh | sh
  2. Set Starship Nerd Font Symbols; make sure you installed the JetBrains Mono Nerd Font:
    starship preset nerd-font-symbols -o ~/.config/starship.toml

FZF

Install fuzzy finder but do not activate its keybindings during setup; we have done that already in the .zshrc file:

git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install

NNN

  1. Check the offical guide for changes before running any commands: https://github.com/jarun/nnn/wiki/Usage#installation
  2. Download and extract the latest nnn release: https://github.com/jarun/nnn/releases/
  3. Install all prerequisites:
    sudo apt-get install pkg-config libncursesw5-dev libreadline-dev
    
  4. Compile nnn with nerd symbols on:
    make O_NERD=1 
    
    Then install it:
    sudo make strip install
    
  5. Lastly download and install all plugins:
    sh -c "$(curl -Ls https://raw.githubusercontent.com/jarun/nnn/master/plugins/getplugs)"
    

unix-setup's People

Contributors

adripfi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.