Advertisement
rama_astadipati

Linux fresh Install

Mar 3rd, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. sudo apt-get update
  2. sudo apt upgrade
  3. sudo apt install git wget -y
  4.  
  5. ##Install Fonts
  6. # clone
  7. git clone https://github.com/powerline/fonts.git --depth=1
  8. # install
  9. cd fonts
  10. ./install.sh
  11. # clean-up a bit
  12. cd ..
  13. rm -rf fonts
  14.  
  15. # Install ZSH
  16.  
  17. sudo apt install zsh
  18.  
  19. ## Clone oh-my-zsh
  20. git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
  21.  
  22. cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
  23.  
  24. ganti jadi agnoster
  25. di profile jangan lupa command zsh
  26. font custom yang dipilih
  27. Source Code Pro for Powerline Medium
  28.  
  29. ## https://caffeinedev.medium.com/customize-your-terminal-oh-my-zsh-on-ubuntu-18-04-lts-a9b11b63f2
  30.  
  31. #Tambahan plugin
  32.  
  33. git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  34.  
  35. zsh-syntax-highlighting
  36.  
  37. git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
  38.  
  39. zsh-autosuggestions
  40.  
  41.  
  42. sudo apt install neofetch
  43.  
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement