Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Thund3rPat committed Dec 2, 2020
1 parent 300dce4 commit 91dafba
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 20 deletions.
15 changes: 13 additions & 2 deletions .SpaceVim.d/init.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
# 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"
colorscheme = "dracula"
colorscheme_bg = "dark"
# Disable guicolors in basic mode, many terminal do not support 24bit
# true colors
Expand All @@ -24,13 +25,23 @@
enable_tabline_filetype_icon = true
enable_statusline_mode = false

[[custom_plugins]]
name = "dracula/vim"

# Enable autocomplete layer
[[layers]]
name = 'autocomplete'
auto_completion_return_key_behavior = "complete"
auto_completion_tab_key_behavior = "smart"
auto_completion_tab_key_behavior = "cycle"

[[layers]]
name = 'shell'
default_position = 'top'
default_height = 30

[[layers]]
name = 'lang#sh'

[[layers]]
name = 'lang#go'

32 changes: 17 additions & 15 deletions .config/fish/config.fish
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
### Thund3rPat's fish config ###

set EDITOR "vim"


### Functions for aliases ###












# Aliases
# git bare
function dotfiles
git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME $argv
end


function ls
lsd $argv
end

function icat
kitty +kitten icat $argv
kitty +kitten icat --align=left $argv
end

# package manager
function u
sudo apt update; sudo apt upgrade; flatpak update
sudo apt update; sudo apt upgrade;sudo apt dist-upgrade ; flatpak update
end

function cleanup
sudo apt autoremove --purge; sudo apt autoclean; flatpak uninstall --unused
end


# youtube-dl
function yta-mp3
youtube-dl --extract-audio --audio-format mp3 $argv
end
11 changes: 10 additions & 1 deletion .config/kitty/kitty.conf
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,14 @@ active_tab_background #f8f8f2
inactive_tab_foreground #282a36
inactive_tab_background #6272a4

# Font
font_family Fira Code
bold_font auto
italic_font auto
bold_italic_font auto

# Keyboard Shortcuts
map kitty_mod+plus change_font_size all +2.0
map kitty_mod+minus change_font_size all -2.0


font_family Fira Code
24 changes: 22 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# My Dotfiles

This repository contains my dotfiles for my Pop!_OS.
My dotfiles are managed with a bare git repository.

+ OS: [Pop!_OS 20.10](https://pop.system76.com/)
+ Shell: [fish](https://fishshell.com/) + [fisher](https://github.com/jorgebucaran/fisher)
Expand All @@ -22,15 +23,34 @@ dotfiles checkout

## Setup fish

```bash
sudo apt install fish
sudo chsh -s $(which fish)
```

Install fisher: https://github.com/jorgebucaran/fisher

Then do:
```bash
fisher install IlanCosman/tide
fisher install dracula/fish
fisher install IlanCosman/tide
fisher install jethrokuan/z
```

After that run:
```
```bash
tide configure
```

## Setup lsd
Prerequisite:
```bash
sudo apt install fonts-font-awesome powerline
```
Download Font: [Fira Code Nerd Fonts](https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraCode)

Download lsd deb and install with eddy: https://github.com/Peltoche/lsd/releases


## Install Spacevim
Follow https://spacevim.org/quick-start-guide/#linux-and-macos

0 comments on commit 91dafba

Please sign in to comment.