i3 changed to dracula
This commit is contained in:
parent
3921a49856
commit
53582d2a7c
62
i3/config
62
i3/config
@ -48,13 +48,22 @@ font pango: Fira Code 11px
|
|||||||
|
|
||||||
# ------------------------- NEW COLORS -------------------------
|
# ------------------------- NEW COLORS -------------------------
|
||||||
# class border backgr. text indicator child_border
|
# class border backgr. text indicator child_border
|
||||||
client.focused $coloract $coloract $white $split $coloract
|
#client.focused $coloract $coloract $white $split $coloract
|
||||||
client.focused_inactive $coloract $coloract $white $split $coloract
|
#client.focused_inactive $coloract $coloract $white $split $coloract
|
||||||
client.unfocused $colorin $colorin #888888 $split $colorin
|
#client.unfocused $colorin $colorin #888888 $split $colorin
|
||||||
client.urgent #2f343a #900000 $white #900000 #900000
|
#client.urgent #2f343a #900000 $white #900000 #900000
|
||||||
client.placeholder #000000 #0c0c0c $white #000000 #0c0c0c
|
#client.placeholder #000000 #0c0c0c $white #000000 #0c0c0c
|
||||||
|
|
||||||
client.background #ffffff
|
#client.background #ffffff
|
||||||
|
|
||||||
|
# -------------------- DRACULA THEME ----------------------------
|
||||||
|
client.focused #6272A4 #6272A4 #F8F8F2 #FF79C6 #6272A4
|
||||||
|
client.focused_inactive #44475A #44475A #F8F8F2 #44475A #44475A
|
||||||
|
client.unfocused #282A36 #282A36 #BFBFBF #282A36 #282A36
|
||||||
|
client.urgent #44475A #FF5555 #F8F8F2 #FF5555 #FF5555
|
||||||
|
client.placeholder #282A36 #282A36 #F8F8F2 #282A36 #282A36
|
||||||
|
|
||||||
|
client.background #F8F8F2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -64,7 +73,7 @@ client.background #ffffff
|
|||||||
|
|
||||||
# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
|
# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
|
||||||
# screen before suspend. Use loginctl lock-session to lock your screen.
|
# screen before suspend. Use loginctl lock-session to lock your screen.
|
||||||
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork
|
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork --color=000000
|
||||||
exec --no-startup-id setxkbmap -option
|
exec --no-startup-id setxkbmap -option
|
||||||
# NetworkManager is the most popular way to manage wireless networks on Linux,
|
# NetworkManager is the most popular way to manage wireless networks on Linux,
|
||||||
# and nm-applet is a desktop environment-independent system tray GUI for it.
|
# and nm-applet is a desktop environment-independent system tray GUI for it.
|
||||||
@ -174,8 +183,8 @@ bindsym $mod+Shift+space focus mode_toggle
|
|||||||
# focus the child container
|
# focus the child container
|
||||||
#bindsym $mod+d focus child
|
#bindsym $mod+d focus child
|
||||||
|
|
||||||
new_window pixel 2
|
new_window pixel 3
|
||||||
default_border pixel 2
|
default_border pixel 3
|
||||||
|
|
||||||
gaps inner 14
|
gaps inner 14
|
||||||
gaps outer 14
|
gaps outer 14
|
||||||
@ -324,7 +333,7 @@ mode "resize" {
|
|||||||
|
|
||||||
bindsym $mod+r mode "resize"
|
bindsym $mod+r mode "resize"
|
||||||
|
|
||||||
set $Locker i3lock && sleep 1
|
set $Locker i3lock --color=000000 && sleep 1
|
||||||
|
|
||||||
set $mode_system (l)lock (e)logout (s)suspend (h)hibernate (r)reboot (Shift+s)shutdown
|
set $mode_system (l)lock (e)logout (s)suspend (h)hibernate (r)reboot (Shift+s)shutdown
|
||||||
|
|
||||||
@ -358,20 +367,35 @@ bar {
|
|||||||
tray_output primary
|
tray_output primary
|
||||||
tray_output eDP-1
|
tray_output eDP-1
|
||||||
i3bar_command i3bar
|
i3bar_command i3bar
|
||||||
position bottom
|
position top
|
||||||
separator_symbol "|"
|
separator_symbol "|"
|
||||||
|
|
||||||
|
# colors {
|
||||||
|
# background #000000
|
||||||
|
# statusline $white
|
||||||
|
# separator $white
|
||||||
|
#
|
||||||
|
# focused_workspace $colorin $split #FFFFFF
|
||||||
|
# active_workspace #333333 #222222 #FFFFFF
|
||||||
|
# inactive_workspace #333333 #222222 #888888
|
||||||
|
# urgent_workspace #2F343A #900000 #FFFFFF
|
||||||
|
# binding_mode #2F343A #900000 #FFFFFF
|
||||||
|
# }
|
||||||
|
# DRACULA THEMMEMEMEMMEE
|
||||||
colors {
|
colors {
|
||||||
background #000000
|
background #282A36
|
||||||
statusline $white
|
statusline #F8F8F2
|
||||||
separator $white
|
separator #44475A
|
||||||
|
|
||||||
focused_workspace $colorin $split #FFFFFF
|
focused_workspace #44475A #44475A #F8F8F2
|
||||||
active_workspace #333333 #222222 #FFFFFF
|
active_workspace #282A36 #44475A #F8F8F2
|
||||||
inactive_workspace #333333 #222222 #888888
|
inactive_workspace #282A36 #282A36 #BFBFBF
|
||||||
urgent_workspace #2F343A #900000 #FFFFFF
|
urgent_workspace #FF5555 #FF5555 #F8F8F2
|
||||||
binding_mode #2F343A #900000 #FFFFFF
|
binding_mode #FF5555 #FF5555 #F8F8F2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bindsym $mod+b bar mode toggle
|
bindsym $mod+b bar mode toggle
|
||||||
|
@ -29,10 +29,12 @@ Plug 'tomasr/molokai'
|
|||||||
Plug 'gko/vim-coloresque'
|
Plug 'gko/vim-coloresque'
|
||||||
Plug 'dracula/vim', { 'as': 'dracula' }
|
Plug 'dracula/vim', { 'as': 'dracula' }
|
||||||
Plug 'joshdick/onedark.vim'
|
Plug 'joshdick/onedark.vim'
|
||||||
|
Plug 'Mofiqul/dracula.nvim'
|
||||||
|
|
||||||
" Lang. Support
|
" Lang. Support
|
||||||
Plug 'fatih/vim-go'
|
Plug 'fatih/vim-go'
|
||||||
Plug 'artur-shaik/vim-javacomplete2'
|
Plug 'artur-shaik/vim-javacomplete2'
|
||||||
|
autocmd FileType java setlocal omnifunc=javacomplete#Complete
|
||||||
"Plug 'Valloric/YouCompleteMe', { 'do': './install.py' }
|
"Plug 'Valloric/YouCompleteMe', { 'do': './install.py' }
|
||||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
Plug 'zchee/deoplete-jedi'
|
Plug 'zchee/deoplete-jedi'
|
||||||
@ -71,11 +73,14 @@ Plug 'tpope/vim-fugitive'
|
|||||||
" Icons
|
" Icons
|
||||||
Plug 'ryanoasis/vim-devicons'
|
Plug 'ryanoasis/vim-devicons'
|
||||||
|
|
||||||
|
" ASCII
|
||||||
|
Plug 'jbyuki/venn.nvim'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
||||||
"let g:molokai_original = 1
|
"let g:molokai_original = 1
|
||||||
let g:airline_theme='onedark'
|
"let g:airline_theme='onedark'
|
||||||
|
let g:airline_theme='dracula'
|
||||||
let g:ale_enable=0
|
let g:ale_enable=0
|
||||||
syntax on
|
syntax on
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
@ -84,7 +89,8 @@ set softtabstop=4
|
|||||||
set tabstop=4
|
set tabstop=4
|
||||||
set expandtab
|
set expandtab
|
||||||
set number relativenumber
|
set number relativenumber
|
||||||
colorscheme onedark
|
"colorscheme onedark
|
||||||
|
colorscheme dracula
|
||||||
set nocompatible
|
set nocompatible
|
||||||
set encoding=UTF-8
|
set encoding=UTF-8
|
||||||
set clipboard+=unnamedplus
|
set clipboard+=unnamedplus
|
||||||
@ -93,6 +99,7 @@ set mouse=a
|
|||||||
" Map Leader
|
" Map Leader
|
||||||
let mapleader = ","
|
let mapleader = ","
|
||||||
|
|
||||||
|
|
||||||
" Note taking (Mardown, Spelling)
|
" Note taking (Mardown, Spelling)
|
||||||
let g:vimwiki_list = [{'path': '~/vimwiki/',
|
let g:vimwiki_list = [{'path': '~/vimwiki/',
|
||||||
\ 'syntax': 'markdown', 'ext': '.md'}]
|
\ 'syntax': 'markdown', 'ext': '.md'}]
|
||||||
@ -130,7 +137,7 @@ let g:deoplete#enable_at_startup = 1
|
|||||||
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
|
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
|
||||||
let g:jedi#completions_enabled = 0
|
let g:jedi#completions_enabled = 0
|
||||||
let g:jedi#use_splits_not_buffers = "right"
|
let g:jedi#use_splits_not_buffers = "right"
|
||||||
g:deoplete#sources#jedi#python_path = 'python3'
|
" g:deoplete#sources#jedi#python_path = 'python3'
|
||||||
let g:python3_host_prog = '/usr/bin/python3'
|
let g:python3_host_prog = '/usr/bin/python3'
|
||||||
|
|
||||||
" Limeligt Binds
|
" Limeligt Binds
|
||||||
@ -157,7 +164,8 @@ nnoremap <A-Up> :tabn<CR>
|
|||||||
|
|
||||||
" Basic cmd commands
|
" Basic cmd commands
|
||||||
nnoremap <A-n> :!touch<Space>
|
nnoremap <A-n> :!touch<Space>
|
||||||
nnoremap <A-o> :tabe<Space>
|
nnoremap <A-o> :e<Space>
|
||||||
|
nnoremap <A-O> :tabe<Space>
|
||||||
nnoremap <A-v> :vsplit<Space>
|
nnoremap <A-v> :vsplit<Space>
|
||||||
|
|
||||||
" Screenshot command
|
" Screenshot command
|
||||||
@ -188,4 +196,3 @@ let g:vimwiki_list = [{
|
|||||||
|
|
||||||
" Vimwiki
|
" Vimwiki
|
||||||
nnoremap <leader>T :VimwikiTable<CR>
|
nnoremap <leader>T :VimwikiTable<CR>
|
||||||
|
|
||||||
|
@ -111,3 +111,39 @@ detailInfo
|
|||||||
getInfo
|
getInfo
|
||||||
getRegNum
|
getRegNum
|
||||||
p2
|
p2
|
||||||
|
CSCU9V4
|
||||||
|
ACWL
|
||||||
|
DCBA
|
||||||
|
DCB'A
|
||||||
|
DC'BA
|
||||||
|
DC'B'A
|
||||||
|
D'CBA
|
||||||
|
D'CB'A
|
||||||
|
D'C'BA
|
||||||
|
D'C'B'A
|
||||||
|
Σ
|
||||||
|
CSCU9Y4
|
||||||
|
structs
|
||||||
|
RESTful
|
||||||
|
goroutines
|
||||||
|
wikipedia
|
||||||
|
org
|
||||||
|
Kernighan
|
||||||
|
Northeastern
|
||||||
|
RedHat
|
||||||
|
st
|
||||||
|
Griesemer
|
||||||
|
GitLab
|
||||||
|
CockroachDB
|
||||||
|
fmt
|
||||||
|
ioutil
|
||||||
|
ReadFile
|
||||||
|
dicts
|
||||||
|
len
|
||||||
|
gobyexample
|
||||||
|
com
|
||||||
|
struct
|
||||||
|
OpenWeatherMap
|
||||||
|
json
|
||||||
|
loadJson
|
||||||
|
WeatherAPI
|
||||||
|
Binary file not shown.
@ -22,7 +22,7 @@ settings:
|
|||||||
scrolling.smooth:
|
scrolling.smooth:
|
||||||
global: true
|
global: true
|
||||||
statusbar.show:
|
statusbar.show:
|
||||||
global: never
|
global: always
|
||||||
tabs.position:
|
tabs.position:
|
||||||
global: left
|
global: left
|
||||||
tabs.show:
|
tabs.show:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user