vault backup: 2023-07-18 00:00:39

This commit is contained in:
dashi_main
2023-07-18 00:00:39 -07:00
parent 1d78ecc175
commit feef97a877
4 changed files with 70 additions and 37 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.obsidian/workspace.json

View File

@@ -4,43 +4,21 @@
"type": "split", "type": "split",
"children": [ "children": [
{ {
"id": "81e412e05113366c", "id": "54329191cc4a16df",
"type": "tabs", "type": "tabs",
"children": [ "children": [
{ {
"id": "03f88f218a42dcc6", "id": "f9e97fd880d67995",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "empty", "type": "diff-view",
"state": {}
}
},
{
"id": "657edfc05cc08cd7",
"type": "leaf",
"state": {
"type": "markdown",
"state": { "state": {
"file": "README.md", "file": ".gitignore",
"mode": "source", "staged": false
"source": false
}
}
},
{
"id": "a072d1b7e91691d6",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Tenmado/Linux - Desktop Entries.md",
"mode": "source",
"source": false
} }
} }
} }
], ]
"currentTab": 2
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -106,7 +84,6 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "Tenmado/Linux - Desktop Entries.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -123,7 +100,6 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "Tenmado/Linux - Desktop Entries.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@@ -145,9 +121,7 @@
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {}
"file": "Tenmado/Linux - Desktop Entries.md"
}
} }
}, },
{ {
@@ -175,11 +149,12 @@
"command-palette:Open command palette": false "command-palette:Open command palette": false
} }
}, },
"active": "a072d1b7e91691d6", "active": "f9e97fd880d67995",
"lastOpenFiles": [ "lastOpenFiles": [
"Tenmado/Linux - Desktop Entries 1.md",
"Tenmado/Linux - Desktop Entries.md", "Tenmado/Linux - Desktop Entries.md",
"README.md", "README.md",
"Tenmado/Dotfiles.md",
"Tenmado/Linux - Desktop Entries 1.md",
"Refence Notes", "Refence Notes",
"Templates", "Templates",
"Files", "Files",

56
Tenmado/Dotfiles.md Normal file
View File

@@ -0,0 +1,56 @@
#Linux/Dotfiles
#Public/Notta
## Clean .zshrc
> [!NOTE] This config can be used globally
```bash
# Created by newuser for 5.8.1
# custom options for typewritten, Global Setting
export TYPEWRITTEN_PROMPT_LAYOUT="pure"
export TYPEWRITTEN_COLOR_MAPPINGS="primary:white;secondary:white"
export TYPEWRITTEN_COLORS="arrow:white;symbol:white"
export TYPEWRITTEN_SYMBOL=""
export TYPEWRITTEN_ARROW_SYMBOL=""
export TYPEWRITTEN_CURSOR="underscore"
# Aliasses
alias alaconfig="nvim ~/.config/alacritty/alacritty.yml"
alias zshconfig="nvim ~/.zshrc"
alias kittyconfig="nvim ~/.config/kitty/kitty.conf"
alias tmuxconfig="nvim ~/.tmux.conf"
alias nvimconfig="nvim ~/.config/nvim/init.vim"
alias rangerconfig="nvim ~/.config/ranger/rc.conf"
alias nvimplugin="nvim ~/.config/nvim/vim-plug/plugins.vim"
alias luaconfig="nvim ~/.config/nvim/lua/caiinz/init.lua"
source ~/antigen.zsh
# load the oh-my-zsh's library
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh)
antigen bundle command-not-found
antigen bundle z
antigen bundle colored-man-pages
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
# tells antigen that you are done
antigen apply
# sets typewritten as default, GLOBAL Setting
fpath+=$HOME/.zsh/typewritten
autoload -U promptinit; promptinit
prompt typewritten
# Useful aliasses with exa and icons
# Note: if using WSL2 Place these alisses all the way at the end!
alias la="exa --long --header --icons -a -l"
alias ls="exa --long --header --icons -a"
alias vi="nvim"
alias cat="bat"
alias lg="lazygit"
```

View File

@@ -1,4 +1,5 @@
# Ubuntu Based Sytems #Public/Notta
## Ubuntu Based Sytems
**.desktop files are store in:** **.desktop files are store in:**
```bash ```bash
@@ -21,7 +22,7 @@ Categories=Internet,Utilities,etc #it can be any of these or other options
```bash ```bash
``` ```
# Apt package manager, well maintained apps ## Apt package manager, well maintained apps
**exa:** A 'ls' replacement, it can show awesome icons as well, ***note: a nerdfont needs to be installed*** **exa:** A 'ls' replacement, it can show awesome icons as well, ***note: a nerdfont needs to be installed***