diff options
-rw-r--r-- | alacritty/.config/alacritty/alacritty.yml | 51 | ||||
-rw-r--r-- | nvim/.config/nvim/init.vim | 15 | ||||
-rw-r--r-- | zsh/.zshrc | 1 |
3 files changed, 58 insertions, 9 deletions
diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..21ee0f5 --- /dev/null +++ b/alacritty/.config/alacritty/alacritty.yml | |||
@@ -0,0 +1,51 @@ | |||
1 | # Colors (Ayu Dark) | ||
2 | colors: | ||
3 | # Default colors | ||
4 | primary: | ||
5 | background: '0x0A0E14' | ||
6 | foreground: '0xB3B1AD' | ||
7 | |||
8 | # Normal colors | ||
9 | normal: | ||
10 | black: '0x01060E' | ||
11 | red: '0xEA6C73' | ||
12 | green: '0x91B362' | ||
13 | yellow: '0xF9AF4F' | ||
14 | blue: '0x53BDFA' | ||
15 | magenta: '0xFAE994' | ||
16 | cyan: '0x90E1C6' | ||
17 | white: '0xC7C7C7' | ||
18 | |||
19 | # Bright colors | ||
20 | bright: | ||
21 | black: '0x686868' | ||
22 | red: '0xF07178' | ||
23 | green: '0xC2D94C' | ||
24 | yellow: '0xFFB454' | ||
25 | blue: '0x59C2FF' | ||
26 | magenta: '0xFFEE99' | ||
27 | cyan: '0x95E6CB' | ||
28 | white: '0xFFFFFF' | ||
29 | |||
30 | font: | ||
31 | # Normal (roman) font face | ||
32 | normal: | ||
33 | # Font family | ||
34 | # | ||
35 | # Default: | ||
36 | # - (macOS) Menlo | ||
37 | # - (Linux) monospace | ||
38 | # - (Windows) Consolas | ||
39 | family: 'Hermit' | ||
40 | |||
41 | # The `style` can be specified to pick a specific face. | ||
42 | style: Regular | ||
43 | |||
44 | # Point size | ||
45 | size: 8.5 | ||
46 | |||
47 | offset: | ||
48 | x: 0 | ||
49 | y: 0 | ||
50 | |||
51 | |||
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 23fc205..e4c82d1 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim | |||
@@ -3,11 +3,9 @@ set number relativenumber | |||
3 | 3 | ||
4 | call plug#begin() | 4 | call plug#begin() |
5 | "Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | 5 | "Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } |
6 | Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } } | ||
7 | Plug 'Shougo/deol.nvim' | 6 | Plug 'Shougo/deol.nvim' |
8 | Plug 'ap/vim-css-color' | 7 | Plug 'ap/vim-css-color' |
9 | Plug 'luochen1990/rainbow' | 8 | Plug 'luochen1990/rainbow' |
10 | Plug 'zchee/deoplete-jedi' | ||
11 | Plug 'tpope/vim-eunuch' | 9 | Plug 'tpope/vim-eunuch' |
12 | Plug 'scrooloose/nerdtree' | 10 | Plug 'scrooloose/nerdtree' |
13 | Plug 'junegunn/goyo.vim' | 11 | Plug 'junegunn/goyo.vim' |
@@ -120,9 +118,13 @@ let g:airline_symbols.linenr = '' | |||
120 | "let g:airline_theme='ubaryd' | 118 | "let g:airline_theme='ubaryd' |
121 | "let g:airline_theme='laederon' | 119 | "let g:airline_theme='laederon' |
122 | "let g:airline_theme='kolor' | 120 | "let g:airline_theme='kolor' |
123 | let g:airline_theme='molokai' | 121 | let g:airline_theme='deus' |
124 | "let g:airline_theme='powerlineish' | 122 | "let g:airline_theme='powerlineish' |
125 | " | 123 | |
124 | " nerdtree | ||
125 | let g:NERDTreeWinPos = "right" | ||
126 | map <C-n> :NERDTreeToggle<CR> | ||
127 | |||
126 | set guicursor= | 128 | set guicursor= |
127 | set mouse=a | 129 | set mouse=a |
128 | syntax on | 130 | syntax on |
@@ -130,8 +132,3 @@ set cursorline | |||
130 | set smartcase | 132 | set smartcase |
131 | set wildmenu " Tab autocomplete in command mode | 133 | set wildmenu " Tab autocomplete in command mode |
132 | set autoread " Auto reload changed files | 134 | set autoread " Auto reload changed files |
133 | |||
134 | |||
135 | " mapping | ||
136 | map <C-n> :NERDTreeToggle<CR> | ||
137 | nmap <C-l> <Plug>MarkdownPreviewToggle | ||
@@ -112,6 +112,7 @@ alias ncu="nmcli connection up " | |||
112 | alias nct="nmtui-connect" | 112 | alias nct="nmtui-connect" |
113 | alias ncd="nmcli connection down " | 113 | alias ncd="nmcli connection down " |
114 | alias pg="ping google.com" | 114 | alias pg="ping google.com" |
115 | alias weather="curl wttr.in" | ||
115 | alias py="/bin/python" | 116 | alias py="/bin/python" |
116 | alias pubip="curl ipinfo.io/ip" | 117 | alias pubip="curl ipinfo.io/ip" |
117 | alias mirror="sudo reflector --verbose --latest 5 --sort rate --save /etc/pacman.d/mirrorlist" | 118 | alias mirror="sudo reflector --verbose --latest 5 --sort rate --save /etc/pacman.d/mirrorlist" |