updates to polybar & vim
This commit is contained in:
0
.chunkwmrc
Normal file → Executable file
0
.chunkwmrc
Normal file → Executable file
@@ -1 +0,0 @@
|
|||||||
/home/tristan/build/dotfiles/.config/Xresources.d
|
|
||||||
2
.config/alacritty/alacritty.yml
Normal file → Executable file
2
.config/alacritty/alacritty.yml
Normal file → Executable file
@@ -73,7 +73,7 @@ font:
|
|||||||
# style: Italic
|
# style: Italic
|
||||||
|
|
||||||
# Point size of the font
|
# Point size of the font
|
||||||
size: 12.0
|
size: 8.0
|
||||||
|
|
||||||
# Offset is the extra space around each character. offset.y can be thought of
|
# Offset is the extra space around each character. offset.y can be thought of
|
||||||
# as modifying the linespacing, and offset.x as modifying the letter spacing.
|
# as modifying the linespacing, and offset.x as modifying the letter spacing.
|
||||||
|
|||||||
0
.config/alacritty/alacritty_ranger.yml
Normal file → Executable file
0
.config/alacritty/alacritty_ranger.yml
Normal file → Executable file
0
.config/conky/conkyrc
Normal file → Executable file
0
.config/conky/conkyrc
Normal file → Executable file
@@ -1 +0,0 @@
|
|||||||
/home/tristan/build/dotfiles/.config/dunst
|
|
||||||
0
.config/fontconfig/fonts.conf
Normal file → Executable file
0
.config/fontconfig/fonts.conf
Normal file → Executable file
@@ -1 +0,0 @@
|
|||||||
/home/tristan/build/dotfiles/.config/htop
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
/home/tristan/build/dotfiles/.config/mpd
|
|
||||||
0
.config/nvim/.gitignore
vendored
Normal file → Executable file
0
.config/nvim/.gitignore
vendored
Normal file → Executable file
0
.config/nvim/autoload/.keep
Normal file → Executable file
0
.config/nvim/autoload/.keep
Normal file → Executable file
0
.config/nvim/autoload/plug.vim
Normal file → Executable file
0
.config/nvim/autoload/plug.vim
Normal file → Executable file
@@ -55,6 +55,8 @@ if has("mouse")
|
|||||||
endif
|
endif
|
||||||
set mousehide " Hide mouse pointer on insert mode."
|
set mousehide " Hide mouse pointer on insert mode."
|
||||||
|
|
||||||
|
"set iskeyword+=:
|
||||||
|
|
||||||
"MAPPINGS
|
"MAPPINGS
|
||||||
set pastetoggle=<F2>
|
set pastetoggle=<F2>
|
||||||
map <F10> :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
|
map <F10> :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
|
||||||
@@ -115,7 +117,6 @@ call plug#begin('~/.config/nvim/bundle')
|
|||||||
"Interfaces
|
"Interfaces
|
||||||
Plug 'Shougo/unite.vim'
|
Plug 'Shougo/unite.vim'
|
||||||
Plug 'mhinz/vim-startify'
|
Plug 'mhinz/vim-startify'
|
||||||
Plug 'git-time-metric/gtm-vim-plugin'
|
|
||||||
"Arduino
|
"Arduino
|
||||||
Plug 'z3t0/arduvim'
|
Plug 'z3t0/arduvim'
|
||||||
|
|
||||||
@@ -134,6 +135,7 @@ Plug 'Shougo/deoplete-rct'
|
|||||||
Plug 'editorconfig/editorconfig-vim'
|
Plug 'editorconfig/editorconfig-vim'
|
||||||
Plug 'vim-latex/vim-latex'
|
Plug 'vim-latex/vim-latex'
|
||||||
Plug 'noahfrederick/vim-laravel'
|
Plug 'noahfrederick/vim-laravel'
|
||||||
|
Plug '1995parham/vim-spice'
|
||||||
|
|
||||||
"GIT
|
"GIT
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
@@ -150,6 +152,7 @@ Plug 'mattn/emmet-vim'
|
|||||||
"syntax, colorscheme, etc. (visuals)
|
"syntax, colorscheme, etc. (visuals)
|
||||||
Plug 'chrisbra/Colorizer'
|
Plug 'chrisbra/Colorizer'
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
|
Plug '1995parham/vim-spice'
|
||||||
Plug 'mgee/lightline-bufferline'
|
Plug 'mgee/lightline-bufferline'
|
||||||
Plug 'ryanoasis/vim-devicons'
|
Plug 'ryanoasis/vim-devicons'
|
||||||
Plug 'PotatoesMaster/i3-vim-syntax'
|
Plug 'PotatoesMaster/i3-vim-syntax'
|
||||||
@@ -196,7 +199,6 @@ let g:tex_flavor='latex'
|
|||||||
let g:Tex_DefaultTargetFormat='pdf'
|
let g:Tex_DefaultTargetFormat='pdf'
|
||||||
let g:Tex_ViewRule_pdf='firefox'
|
let g:Tex_ViewRule_pdf='firefox'
|
||||||
let g:Tex_CompileRule_pdf='pdflatex -shell-escape'
|
let g:Tex_CompileRule_pdf='pdflatex -shell-escape'
|
||||||
set iskeyword+=:
|
|
||||||
|
|
||||||
"POLYGLOT
|
"POLYGLOT
|
||||||
let g:polyglot_disabled = ['css', 'html', 'javascript']
|
let g:polyglot_disabled = ['css', 'html', 'javascript']
|
||||||
@@ -370,6 +372,12 @@ augroup Vuefix
|
|||||||
au Filetype vue syntax sync fromstart
|
au Filetype vue syntax sync fromstart
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
augroup spicefix
|
||||||
|
au!
|
||||||
|
au BufRead,BufNewFile *.cir setlocal filetype=spice
|
||||||
|
au Filetype spice syntax sync fromstart
|
||||||
|
augroup END
|
||||||
|
|
||||||
augroup newfiles
|
augroup newfiles
|
||||||
au!
|
au!
|
||||||
au BufWritePre * %s/\s\+$//e
|
au BufWritePre * %s/\s\+$//e
|
||||||
|
|||||||
17
.config/polybar/config
Normal file → Executable file
17
.config/polybar/config
Normal file → Executable file
@@ -55,7 +55,7 @@ border-color = ${colors.background-alt}
|
|||||||
spacing = 1
|
spacing = 1
|
||||||
padding = 1
|
padding = 1
|
||||||
|
|
||||||
module-margin-left = 1
|
module-margin-left = 2
|
||||||
module-margin-right = 0
|
module-margin-right = 0
|
||||||
|
|
||||||
font-0 = "xos4 Terminess Powerline:pixelsize=16"
|
font-0 = "xos4 Terminess Powerline:pixelsize=16"
|
||||||
@@ -77,7 +77,7 @@ cursor-click = pointer
|
|||||||
cursor-scroll = ns-resize
|
cursor-scroll = ns-resize
|
||||||
|
|
||||||
[bar/bottom]
|
[bar/bottom]
|
||||||
monitor = DP-1
|
monitor = ${env:MONITOR}
|
||||||
bottom = true
|
bottom = true
|
||||||
width = 100%
|
width = 100%
|
||||||
height = 30
|
height = 30
|
||||||
@@ -150,10 +150,9 @@ blacklist-1 = scroll lock
|
|||||||
blacklist-2 = caps lock
|
blacklist-2 = caps lock
|
||||||
|
|
||||||
format-prefix = " "
|
format-prefix = " "
|
||||||
format-prefix-underline = ${colors.red}
|
format-prefix-foreground = ${colors.yellow}
|
||||||
|
|
||||||
label-layout = %layout%
|
label-layout = %layout%
|
||||||
label-layout-underline = ${colors.red}
|
|
||||||
|
|
||||||
[module/filesystem]
|
[module/filesystem]
|
||||||
type = internal/fs
|
type = internal/fs
|
||||||
@@ -164,6 +163,8 @@ format-unmounted = <label-unmounted>
|
|||||||
|
|
||||||
mount-0 = /
|
mount-0 = /
|
||||||
mount-1 = /media
|
mount-1 = /media
|
||||||
|
mount-2 = /home
|
||||||
|
spacing = 1
|
||||||
|
|
||||||
label-mounted = ${env:LABEL_MOUNTED}
|
label-mounted = ${env:LABEL_MOUNTED}
|
||||||
label-unmounted =
|
label-unmounted =
|
||||||
@@ -262,8 +263,8 @@ battery = BAT0
|
|||||||
adapter = ADP1
|
adapter = ADP1
|
||||||
time-format = %H:%M
|
time-format = %H:%M
|
||||||
|
|
||||||
format-charging = <animation-charging> <label-charging>
|
format-charging = <animation-charging><label-charging>
|
||||||
format-discharging = <ramp-capacity> <label-discharging>
|
format-discharging = <ramp-capacity><label-discharging>
|
||||||
format-full-foreground = ${colors.green}
|
format-full-foreground = ${colors.green}
|
||||||
format-charging-foreground = ${colors.yellow}
|
format-charging-foreground = ${colors.yellow}
|
||||||
format-discharging-foreground = ${colors.cyan}
|
format-discharging-foreground = ${colors.cyan}
|
||||||
@@ -296,8 +297,8 @@ date-alt = " %d/%m/%Y"
|
|||||||
time = %H:%M
|
time = %H:%M
|
||||||
time-alt = %H:%M:%S
|
time-alt = %H:%M:%S
|
||||||
|
|
||||||
format-prefix-foreground = ${colors.foreground}
|
format-prefix-foreground = ${colors.pink}
|
||||||
format-prefix=
|
format-prefix= " "
|
||||||
format-underline = ${colors.blue}
|
format-underline = ${colors.blue}
|
||||||
|
|
||||||
label = %time%%date%
|
label = %time%%date%
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
':/home/tristan
|
n:/home/tristan/build/sneider.si/assets/css/images
|
||||||
|
|||||||
0
.config/ranger/plugins/__init__.py
Normal file → Executable file
0
.config/ranger/plugins/__init__.py
Normal file → Executable file
0
.config/systemd/user/background-rotate.service
Normal file → Executable file
0
.config/systemd/user/background-rotate.service
Normal file → Executable file
0
.config/systemd/user/background-rotate.timer
Normal file → Executable file
0
.config/systemd/user/background-rotate.timer
Normal file → Executable file
0
.config/termite/config
Normal file → Executable file
0
.config/termite/config
Normal file → Executable file
0
.gitmodules
vendored
Normal file → Executable file
0
.gitmodules
vendored
Normal file → Executable file
2
.i3/config
Normal file → Executable file
2
.i3/config
Normal file → Executable file
@@ -35,7 +35,7 @@ font pango: xos4 Terminus, Font Awesome 5 Free, Font Awesome 5 Brands 12
|
|||||||
|
|
||||||
#-----T-i3-----#
|
#-----T-i3-----#
|
||||||
#class border backgr. text indicator
|
#class border backgr. text indicator
|
||||||
client.focused #ffffff #f8f8f2 #ffffff #8be9fd
|
client.focused #f8f8f2 #f8f8f2 #44475a #8be9fd
|
||||||
client.focused_inactive #44475a #44475a #ffffff #6272a4
|
client.focused_inactive #44475a #44475a #ffffff #6272a4
|
||||||
client.urgent #ff79c6 #900000 #ffffff #900000
|
client.urgent #ff79c6 #900000 #ffffff #900000
|
||||||
client.placeholder #000000 #0c0c0c #ffffff #000000
|
client.placeholder #000000 #0c0c0c #ffffff #000000
|
||||||
|
|||||||
0
.i3/custom.map
Normal file → Executable file
0
.i3/custom.map
Normal file → Executable file
0
.i3/i3blocks-netbook.conf
Normal file → Executable file
0
.i3/i3blocks-netbook.conf
Normal file → Executable file
0
.i3/i3blocks.conf
Normal file → Executable file
0
.i3/i3blocks.conf
Normal file → Executable file
0
.i3/layouts/gimp-layout.json
Normal file → Executable file
0
.i3/layouts/gimp-layout.json
Normal file → Executable file
0
.i3/layouts/workspace-3.json
Normal file → Executable file
0
.i3/layouts/workspace-3.json
Normal file → Executable file
0
.i3/mboot.mp3
Normal file → Executable file
0
.i3/mboot.mp3
Normal file → Executable file
Submodule .oh-my-zsh updated: a0b8eab5f0...2ff9560ad3
Reference in New Issue
Block a user