Firstly:
sudo nano /etc/pacman.conf
Commenting EndeavourOS repository, and adding the arch community repo:
#[endeavouros]
#SigLevel = PackageRequired
#Include = /etc/pacman.d/endeavouros-mirrorlist
Firstly:
sudo nano /etc/pacman.conf
Commenting EndeavourOS repository, and adding the arch community repo:
#[endeavouros]
#SigLevel = PackageRequired
#Include = /etc/pacman.d/endeavouros-mirrorlist
| ################################ | |
| #### Gruvbox Material Light #### | |
| ################################ | |
| set $bg #fbf1c7 | |
| set $fg #654735 | |
| set $red #c14a4a | |
| set $orange #c35e0a | |
| set $green #6c782e | |
| set $blue #45707a | |
| set $purple #945e80 |
| #zenburn | |
| set $bg #2c2c2e | |
| set $fg #9f9f9f | |
| set $hi #efef8f | |
| set $ac #a0afa0 | |
| set $tx #040404 | |
| set $ia #8f8f8f | |
| set $be #8faf9f | |
| set $yw #ccdc90 | |
| set $gn #88b090 |
| ######################################################################################## | |
| AUTOGENERATED HYPR CONFIG. | |
| PLEASE USE THE CONFIG PROVIDED IN THE GIT REPO /examples/hypr.conf AND EDIT IT, | |
| OR EDIT THIS ONE ACCORDING TO THE WIKI INSTRUCTIONS. | |
| ######################################################################################## | |
| # | |
| # Please note not all available settings / options are set here. | |
| # For a full list, see the wiki |
| modkey = "Mod4" | |
| mousekey = "Mod4" | |
| workspaces = [] | |
| tags = ["1", "2", "3", "4", "5", "6", "7", "8", "9"] | |
| layouts = ["MainAndVertStack", "MainAndHorizontalStack", "MainAndDeck", "GridHorizontal", "EvenHorizontal", "EvenVertical", "Fibonacci", "LeftMain", "CenterMain", "CenterMainBalanced", "CenterMainFluid", "Monocle", "RightWiderLeftStack", "LeftWiderRightStack"] | |
| layout_mode = "Workspace" | |
| insert_behavior = "Bottom" | |
| scratchpad = [] | |
| window_rules = [] | |
| disable_current_tag_swap = false |
| local function load_plugins() | |
| require('packer').startup(function() | |
| -- Packer can manage itself | |
| use 'wbthomason/packer.nvim' | |
| use "neovim/nvim-lspconfig" | |
| use "nvim-treesitter/nvim-treesitter" | |
| use { | |
| 'nvim-tree/nvim-tree.lua', | |
| requires = { | |
| 'nvim-tree/nvim-web-devicons', -- optional, for file icons |
| # use UTF-8 everywhere | |
| export LANG=en_US.UTF-8 | |
| # specify location of kshrc | |
| export ENV=$HOME/.kshrc | |
| xrdb -merge $HOME/.Xdefaults | |
| # set your background color | |
| xsetroot -solid dimgray |
| # $NetBSD: dot.shrc,v 1.3 2007/11/24 11:14:42 pavel Exp $ | |
| if [ -f /etc/shrc ]; then | |
| . /etc/shrc | |
| fi | |
| case "$-" in *i*) | |
| # interactive mode settings go here | |
| export PS1='$(logname)@$(hostname -s) $(pwd) $ ' | |
| ;; |
| Xft.dpi: 96 | |
| Xft.antialias: true | |
| Xft.hinting: full | |
| Xft.hintstyle: hintslight | |
| Xft.rgba: rgb | |
| UXTerm.termName: xterm-256color | |
| UXTerm.loginShell: true | |
| UXTerm.vt100.locale: true | |
| UXTerm.vt100.faceName: xft:Liberation Mono |
| unbind-key C-b | |
| set -g prefix C-a | |
| bind-key C-a send-prefix | |
| # Start windows and panes at 1, not 0 | |
| set -g base-index 1 | |
| setw -g pane-base-index 1 | |
| set-option -g renumber-windows on | |
| set -g mouse on |