mirror of
https://gitgud.io/Melon__Bread/gnu-plus-dotfiles.git
synced 2025-02-19 10:53:08 -05:00
Added Basics
This commit is contained in:
commit
e12a31a09b
11
.SpaceVim.d/autoload/guifont.vim
Normal file
11
.SpaceVim.d/autoload/guifont.vim
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
function! guifont#setfont () abort
|
||||||
|
set guifont=FiraCode\ Nerd\ Font:h18
|
||||||
|
set clipboard+=unnamedplus
|
||||||
|
let g:neoformat_python_black = {
|
||||||
|
\ 'exe': 'black',
|
||||||
|
\ 'stdin': 1,
|
||||||
|
\ 'args': ['-q', '-'],
|
||||||
|
\ }
|
||||||
|
let g:neoformat_enabled_python = ['black']
|
||||||
|
|
||||||
|
endfunction
|
91
.SpaceVim.d/init.toml
Normal file
91
.SpaceVim.d/init.toml
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
#=============================================================================
|
||||||
|
# dark_powered.toml --- dark powered configuration example for SpaceVim
|
||||||
|
# Copyright (c) 2016-2017 Wang Shidong & Contributors
|
||||||
|
# Author: Wang Shidong < wsdjeg at 163.com >
|
||||||
|
# URL: https://spacevim.org
|
||||||
|
# License: GPLv3
|
||||||
|
#=============================================================================
|
||||||
|
|
||||||
|
# All SpaceVim option below [option] section
|
||||||
|
[options]
|
||||||
|
# set spacevim theme. by default colorscheme layer is not loaded,
|
||||||
|
# if you want to use more colorscheme, please load the colorscheme
|
||||||
|
# layer
|
||||||
|
colorscheme = "gruvbox"
|
||||||
|
background = "dark"
|
||||||
|
# Disable guicolors in basic mode, many terminal do not support 24bit
|
||||||
|
# true colors
|
||||||
|
enable_guicolors = true
|
||||||
|
# Disable statusline separator, if you want to use other value, please
|
||||||
|
# install nerd fonts
|
||||||
|
statusline_separator = "arrow"
|
||||||
|
statusline_inactive_separator = "arrow"
|
||||||
|
buffer_index_type = 4
|
||||||
|
enable_tabline_filetype_icon = true
|
||||||
|
enable_statusline_display_mode = false
|
||||||
|
bootstrap_before = 'guifont#setfont'
|
||||||
|
guifont = "FuraMono Nerd Font:h18"
|
||||||
|
|
||||||
|
# Enable autocomplete layer
|
||||||
|
[[layers]]
|
||||||
|
name = 'autocomplete'
|
||||||
|
auto-completion-return-key-behavior = "complete"
|
||||||
|
auto-completion-tab-key-behavior = "smart"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "checkers"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = 'shell'
|
||||||
|
default_position = 'top'
|
||||||
|
default_height = 30
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "denite"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "git"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "sudo"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "lsp"
|
||||||
|
filetypes = [
|
||||||
|
"rust"
|
||||||
|
]
|
||||||
|
[layers.override_cmd]
|
||||||
|
rust = ["rls"]
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "lang#python"
|
||||||
|
format_on_save = true
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "lang#ipynb"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "lang#html"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "lang#markdown"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "lang#rust"
|
||||||
|
recommended-style = "enabled"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = "lang#sh"
|
||||||
|
|
||||||
|
[[custom_plugins]]
|
||||||
|
name = "anned20/vimsence"
|
||||||
|
|
||||||
|
[[custom_plugins]]
|
||||||
|
name = "mtdl9/vim-log-highlighting"
|
||||||
|
|
||||||
|
[[custom_plugins]]
|
||||||
|
name = "https://tildegit.org/sloum/gemini-vim-syntax"
|
||||||
|
|
||||||
|
[[custom_plugins]]
|
||||||
|
name = "habamax/vim-godot"
|
||||||
|
|
47
.config/kitty/colors/gruvbox-material-dark-hard.conf
Normal file
47
.config/kitty/colors/gruvbox-material-dark-hard.conf
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
background #1d2021
|
||||||
|
foreground #d4be98
|
||||||
|
|
||||||
|
selection_background #d4be98
|
||||||
|
selection_foreground #1d2021
|
||||||
|
|
||||||
|
cursor #a89984
|
||||||
|
cursor_text_color background
|
||||||
|
|
||||||
|
active_tab_background #1d2021
|
||||||
|
active_tab_foreground #d4be98
|
||||||
|
active_tab_font_style bold
|
||||||
|
inactive_tab_background #1d2021
|
||||||
|
inactive_tab_foreground #a89984
|
||||||
|
inactive_tab_font_style normal
|
||||||
|
|
||||||
|
# Black
|
||||||
|
color0 #665c54
|
||||||
|
color8 #928374
|
||||||
|
|
||||||
|
# Red
|
||||||
|
color1 #ea6962
|
||||||
|
color9 #ea6962
|
||||||
|
|
||||||
|
# Green
|
||||||
|
color2 #a9b665
|
||||||
|
color10 #a9b665
|
||||||
|
|
||||||
|
# Yellow
|
||||||
|
color3 #e78a4e
|
||||||
|
color11 #d8a657
|
||||||
|
|
||||||
|
# Blue
|
||||||
|
color4 #7daea3
|
||||||
|
color12 #7daea3
|
||||||
|
|
||||||
|
# Magenta
|
||||||
|
color5 #d3869b
|
||||||
|
color13 #d3869b
|
||||||
|
|
||||||
|
# Cyan
|
||||||
|
color6 #89b482
|
||||||
|
color14 #89b482
|
||||||
|
|
||||||
|
# White
|
||||||
|
color7 #d4be98
|
||||||
|
color15 #d4be98
|
47
.config/kitty/colors/gruvbox-material-dark-medium.conf
Normal file
47
.config/kitty/colors/gruvbox-material-dark-medium.conf
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
background #282828
|
||||||
|
foreground #d4be98
|
||||||
|
|
||||||
|
selection_background #d4be98
|
||||||
|
selection_foreground #282828
|
||||||
|
|
||||||
|
cursor #a89984
|
||||||
|
cursor_text_color background
|
||||||
|
|
||||||
|
active_tab_background #282828
|
||||||
|
active_tab_foreground #d4be98
|
||||||
|
active_tab_font_style bold
|
||||||
|
inactive_tab_background #282828
|
||||||
|
inactive_tab_foreground #a89984
|
||||||
|
inactive_tab_font_style normal
|
||||||
|
|
||||||
|
# Black
|
||||||
|
color0 #665c54
|
||||||
|
color8 #928374
|
||||||
|
|
||||||
|
# Red
|
||||||
|
color1 #ea6962
|
||||||
|
color9 #ea6962
|
||||||
|
|
||||||
|
# Green
|
||||||
|
color2 #a9b665
|
||||||
|
color10 #a9b665
|
||||||
|
|
||||||
|
# Yellow
|
||||||
|
color3 #e78a4e
|
||||||
|
color11 #d8a657
|
||||||
|
|
||||||
|
# Blue
|
||||||
|
color4 #7daea3
|
||||||
|
color12 #7daea3
|
||||||
|
|
||||||
|
# Magenta
|
||||||
|
color5 #d3869b
|
||||||
|
color13 #d3869b
|
||||||
|
|
||||||
|
# Cyan
|
||||||
|
color6 #89b482
|
||||||
|
color14 #89b482
|
||||||
|
|
||||||
|
# White
|
||||||
|
color7 #d4be98
|
||||||
|
color15 #d4be98
|
47
.config/kitty/colors/gruvbox-material-dark-soft.conf
Normal file
47
.config/kitty/colors/gruvbox-material-dark-soft.conf
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
background #32302f
|
||||||
|
foreground #d4be98
|
||||||
|
|
||||||
|
selection_background #d4be98
|
||||||
|
selection_foreground #32302f
|
||||||
|
|
||||||
|
cursor #a89984
|
||||||
|
cursor_text_color background
|
||||||
|
|
||||||
|
active_tab_background #32302f
|
||||||
|
active_tab_foreground #d4be98
|
||||||
|
active_tab_font_style bold
|
||||||
|
inactive_tab_background #32302f
|
||||||
|
inactive_tab_foreground #a89984
|
||||||
|
inactive_tab_font_style normal
|
||||||
|
|
||||||
|
# Black
|
||||||
|
color0 #665c54
|
||||||
|
color8 #928374
|
||||||
|
|
||||||
|
# Red
|
||||||
|
color1 #ea6962
|
||||||
|
color9 #ea6962
|
||||||
|
|
||||||
|
# Green
|
||||||
|
color2 #a9b665
|
||||||
|
color10 #a9b665
|
||||||
|
|
||||||
|
# Yellow
|
||||||
|
color3 #e78a4e
|
||||||
|
color11 #d8a657
|
||||||
|
|
||||||
|
# Blue
|
||||||
|
color4 #7daea3
|
||||||
|
color12 #7daea3
|
||||||
|
|
||||||
|
# Magenta
|
||||||
|
color5 #d3869b
|
||||||
|
color13 #d3869b
|
||||||
|
|
||||||
|
# Cyan
|
||||||
|
color6 #89b482
|
||||||
|
color14 #89b482
|
||||||
|
|
||||||
|
# White
|
||||||
|
color7 #d4be98
|
||||||
|
color15 #d4be98
|
47
.config/kitty/colors/gruvbox-material-light-hard.conf
Normal file
47
.config/kitty/colors/gruvbox-material-light-hard.conf
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
background #f9f5d7
|
||||||
|
foreground #654735
|
||||||
|
|
||||||
|
selection_background #654735
|
||||||
|
selection_foreground #f9f5d7
|
||||||
|
|
||||||
|
cursor #928374
|
||||||
|
cursor_text_color background
|
||||||
|
|
||||||
|
active_tab_background #f9f5d7
|
||||||
|
active_tab_foreground #654735
|
||||||
|
active_tab_font_style bold
|
||||||
|
inactive_tab_background #f9f5d7
|
||||||
|
inactive_tab_foreground #7c6f64
|
||||||
|
inactive_tab_font_style normal
|
||||||
|
|
||||||
|
# Black
|
||||||
|
color0 #bdae93
|
||||||
|
color8 #928374
|
||||||
|
|
||||||
|
# Red
|
||||||
|
color1 #c14a4a
|
||||||
|
color9 #c14a4a
|
||||||
|
|
||||||
|
# Green
|
||||||
|
color2 #6c782e
|
||||||
|
color10 #6c782e
|
||||||
|
|
||||||
|
# Yellow
|
||||||
|
color3 #c35e0a
|
||||||
|
color11 #b47109
|
||||||
|
|
||||||
|
# Blue
|
||||||
|
color4 #45707a
|
||||||
|
color12 #45707a
|
||||||
|
|
||||||
|
# Magenta
|
||||||
|
color5 #945e80
|
||||||
|
color13 #945e80
|
||||||
|
|
||||||
|
# Cyan
|
||||||
|
color6 #4c7a5d
|
||||||
|
color14 #4c7a5d
|
||||||
|
|
||||||
|
# White
|
||||||
|
color7 #654735
|
||||||
|
color15 #654735
|
47
.config/kitty/colors/gruvbox-material-light-medium.conf
Normal file
47
.config/kitty/colors/gruvbox-material-light-medium.conf
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
background #fbf1c7
|
||||||
|
foreground #654735
|
||||||
|
|
||||||
|
selection_background #654735
|
||||||
|
selection_foreground #fbf1c7
|
||||||
|
|
||||||
|
cursor #928374
|
||||||
|
cursor_text_color background
|
||||||
|
|
||||||
|
active_tab_background #fbf1c7
|
||||||
|
active_tab_foreground #654735
|
||||||
|
active_tab_font_style bold
|
||||||
|
inactive_tab_background #fbf1c7
|
||||||
|
inactive_tab_foreground #7c6f64
|
||||||
|
inactive_tab_font_style normal
|
||||||
|
|
||||||
|
# Black
|
||||||
|
color0 #bdae93
|
||||||
|
color8 #928374
|
||||||
|
|
||||||
|
# Red
|
||||||
|
color1 #c14a4a
|
||||||
|
color9 #c14a4a
|
||||||
|
|
||||||
|
# Green
|
||||||
|
color2 #6c782e
|
||||||
|
color10 #6c782e
|
||||||
|
|
||||||
|
# Yellow
|
||||||
|
color3 #c35e0a
|
||||||
|
color11 #b47109
|
||||||
|
|
||||||
|
# Blue
|
||||||
|
color4 #45707a
|
||||||
|
color12 #45707a
|
||||||
|
|
||||||
|
# Magenta
|
||||||
|
color5 #945e80
|
||||||
|
color13 #945e80
|
||||||
|
|
||||||
|
# Cyan
|
||||||
|
color6 #4c7a5d
|
||||||
|
color14 #4c7a5d
|
||||||
|
|
||||||
|
# White
|
||||||
|
color7 #654735
|
||||||
|
color15 #654735
|
47
.config/kitty/colors/gruvbox-material-light-soft.conf
Normal file
47
.config/kitty/colors/gruvbox-material-light-soft.conf
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
background #f2e5bc
|
||||||
|
foreground #654735
|
||||||
|
|
||||||
|
selection_background #654735
|
||||||
|
selection_foreground #f2e5bc
|
||||||
|
|
||||||
|
cursor #928374
|
||||||
|
cursor_text_color background
|
||||||
|
|
||||||
|
active_tab_background #f2e5bc
|
||||||
|
active_tab_foreground #654735
|
||||||
|
active_tab_font_style bold
|
||||||
|
inactive_tab_background #f2e5bc
|
||||||
|
inactive_tab_foreground #7c6f64
|
||||||
|
inactive_tab_font_style normal
|
||||||
|
|
||||||
|
# Black
|
||||||
|
color0 #bdae93
|
||||||
|
color8 #928374
|
||||||
|
|
||||||
|
# Red
|
||||||
|
color1 #c14a4a
|
||||||
|
color9 #c14a4a
|
||||||
|
|
||||||
|
# Green
|
||||||
|
color2 #6c782e
|
||||||
|
color10 #6c782e
|
||||||
|
|
||||||
|
# Yellow
|
||||||
|
color3 #c35e0a
|
||||||
|
color11 #b47109
|
||||||
|
|
||||||
|
# Blue
|
||||||
|
color4 #45707a
|
||||||
|
color12 #45707a
|
||||||
|
|
||||||
|
# Magenta
|
||||||
|
color5 #945e80
|
||||||
|
color13 #945e80
|
||||||
|
|
||||||
|
# Cyan
|
||||||
|
color6 #4c7a5d
|
||||||
|
color14 #4c7a5d
|
||||||
|
|
||||||
|
# White
|
||||||
|
color7 #654735
|
||||||
|
color15 #654735
|
7
.config/kitty/kitty.conf
Normal file
7
.config/kitty/kitty.conf
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Custom color scheme for Kitty terminal emulator
|
||||||
|
# Based on https://github.com/sindresorhus/hyper-snazzy
|
||||||
|
# Modified by ChefTyler
|
||||||
|
# Designed with Simoniz0r zsh theme applied https://github.com/simoniz0r/.zshrc
|
||||||
|
|
||||||
|
include other.conf
|
||||||
|
include colors/gruvbox-material-dark-hard.conf
|
44
.config/kitty/kitty.conf!
Normal file
44
.config/kitty/kitty.conf!
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
# Custom color scheme for Kitty terminal emulator
|
||||||
|
# Based on https://github.com/sindresorhus/hyper-snazzy
|
||||||
|
# Modified by ChefTyler
|
||||||
|
# Designed with Simoniz0r zsh theme applied https://github.com/simoniz0r/.zshrc
|
||||||
|
|
||||||
|
include other.conf
|
||||||
|
|
||||||
|
foreground #FFFFFF
|
||||||
|
background #15181e
|
||||||
|
selection_foreground #000000
|
||||||
|
selection_background #FFFACD
|
||||||
|
url_color #0087BD
|
||||||
|
|
||||||
|
# black
|
||||||
|
color0 #FFFFFF
|
||||||
|
color8 #FFFFFF
|
||||||
|
|
||||||
|
# red
|
||||||
|
color1 #E73600
|
||||||
|
color9 #E73600
|
||||||
|
|
||||||
|
# green
|
||||||
|
color2 #40c340
|
||||||
|
color10 #40c340
|
||||||
|
|
||||||
|
# orange
|
||||||
|
color3 #E47000
|
||||||
|
color11 #E47000
|
||||||
|
|
||||||
|
# blue
|
||||||
|
color4 #5187de
|
||||||
|
color12 #5187de
|
||||||
|
|
||||||
|
# magenta
|
||||||
|
color5 #dc768c
|
||||||
|
color13 #dc768c
|
||||||
|
|
||||||
|
# cyan
|
||||||
|
color6 #00AFB5
|
||||||
|
color14 #00AFB5
|
||||||
|
|
||||||
|
# white
|
||||||
|
color7 #7C7C7C
|
||||||
|
color15 #7C7C7C
|
8
.config/kitty/other.conf
Normal file
8
.config/kitty/other.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
font_size 14.0
|
||||||
|
cursor #cccccc
|
||||||
|
cursor_shape beam
|
||||||
|
# Fonts are custom to me, you may need to change/modify them
|
||||||
|
font_family FuraCode Nerd Font Mono
|
||||||
|
bold_font FuraCode Nerd Font Mono
|
||||||
|
italic_font FuraCode Nerd Font Mono
|
||||||
|
bold_italic_font FuraCode Nerd Font Mono
|
127
.zshrc
Normal file
127
.zshrc
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
# If you come from bash you might have to change your $PATH.
|
||||||
|
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||||
|
|
||||||
|
# Path to your oh-my-zsh installation.
|
||||||
|
export ZSH="/home/melon/.oh-my-zsh"
|
||||||
|
|
||||||
|
# Set name of the theme to load --- if set to "random", it will
|
||||||
|
# load a random theme each time oh-my-zsh is loaded, in which case,
|
||||||
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
||||||
|
ZSH_THEME="spaceship"
|
||||||
|
|
||||||
|
# Set list of themes to pick from when loading at random
|
||||||
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
|
# a theme from this variable instead of looking in $ZSH/themes/
|
||||||
|
# If set to an empty array, this variable will have no effect.
|
||||||
|
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
|
||||||
|
|
||||||
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
|
# CASE_SENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to use hyphen-insensitive completion.
|
||||||
|
# Case-sensitive completion must be off. _ and - will be interchangeable.
|
||||||
|
# HYPHEN_INSENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
||||||
|
# DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to automatically update without prompting.
|
||||||
|
# DISABLE_UPDATE_PROMPT="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to change how often to auto-update (in days).
|
||||||
|
# export UPDATE_ZSH_DAYS=13
|
||||||
|
|
||||||
|
# Uncomment the following line if pasting URLs and other text is messed up.
|
||||||
|
# DISABLE_MAGIC_FUNCTIONS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable colors in ls.
|
||||||
|
# DISABLE_LS_COLORS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable auto-setting terminal title.
|
||||||
|
# DISABLE_AUTO_TITLE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to enable command auto-correction.
|
||||||
|
# ENABLE_CORRECTION="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||||
|
# COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to disable marking untracked files
|
||||||
|
# under VCS as dirty. This makes repository status check for large repositories
|
||||||
|
# much, much faster.
|
||||||
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to change the command execution time
|
||||||
|
# stamp shown in the history command output.
|
||||||
|
# You can set one of the optional three formats:
|
||||||
|
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
||||||
|
# or set a custom format using the strftime function format specifications,
|
||||||
|
# see 'man strftime' for details.
|
||||||
|
# HIST_STAMPS="mm/dd/yyyy"
|
||||||
|
|
||||||
|
# Would you like to use another custom folder than $ZSH/custom?
|
||||||
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||||
|
|
||||||
|
# Which plugins would you like to load?
|
||||||
|
# Standard plugins can be found in $ZSH/plugins/
|
||||||
|
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
||||||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
plugins=(git fzf archlinux python pip sudo tmux zsh-syntax-highlighting zsh-autosuggestions history-substring-search command-not-found systemd systemadmin rustup rsync)
|
||||||
|
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
# User configuration
|
||||||
|
|
||||||
|
# export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
|
||||||
|
# You may need to manually set your language environment
|
||||||
|
# export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
|
# export EDITOR='vim'
|
||||||
|
# else
|
||||||
|
# export EDITOR='mvim'
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# Compilation flags
|
||||||
|
# export ARCHFLAGS="-arch x86_64"
|
||||||
|
|
||||||
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
||||||
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
||||||
|
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
|
||||||
|
# For a full list of active aliases, run `alias`.
|
||||||
|
#
|
||||||
|
# Example aliases
|
||||||
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
|
||||||
|
# Customize to your needs...
|
||||||
|
alias zshconfig="nvim ~/.zshrc"
|
||||||
|
alias zshsource="source ~/.zshrc"
|
||||||
|
alias vim=nvim
|
||||||
|
alias ls="lsd -lh"
|
||||||
|
alias cat=bat
|
||||||
|
alias grep=rg
|
||||||
|
alias ps=procs
|
||||||
|
alias du=dust
|
||||||
|
# Network Alias Commands
|
||||||
|
alias weather="curl wttr.in"
|
||||||
|
alias tb="nc termbin.com 9999"
|
||||||
|
|
||||||
|
export EDITOR=nvim
|
||||||
|
|
||||||
|
export DEVKITPRO=/opt/devkitpro
|
||||||
|
export DEVKITA64=/opt/devkitpro/devkitA64
|
||||||
|
export DEVKITARM=/opt/devkitpro/devkitARM
|
||||||
|
export DEVKITPPC=/opt/devkitpro/devkitPPC
|
||||||
|
|
||||||
|
export npm_config_prefix=~/.node_modules
|
||||||
|
|
||||||
|
export PATH="$PATH:$HOME/go/bin"
|
||||||
|
export PATH="$PATH:$HOME/.bin/"
|
||||||
|
export PATH="$PATH:$HOME/.local/bin"
|
||||||
|
export PATH="$HOME/.node_modules/bin:$PATH"
|
||||||
|
neofetch
|
Loading…
x
Reference in New Issue
Block a user