all repos

dotfiles @ 13c6216

my dotfiles
6 files changed, 19 insertions(+), 15 deletions(-)
Update nvim
Author: Smirnov Olexandr ss2316544@gmail.com
Committed at: 2021-01-04 14:42:57 +0200
Parent: 102aa36
M bin/ipp

@@ -1,5 +1,2 @@

#!/bin/sh -if [ -f '/usr/bin/curl' ] -then curl ipinfo.io/ip -else wget -qO- ipinfo.io/ip -fi +curl ipinfo.io/ip
M config/alacritty.yml

@@ -1,5 +1,5 @@

window: - title: Alacritty + title: Terminal class: instance: Alacritty general: Alacritty

@@ -7,7 +7,6 @@ padding:

x: 0 y: 0 - font: antialias: lcd hinting: true
M config/i3/config

@@ -4,7 +4,7 @@ set $mod Mod4

set $alt Mod1 floating_modifier $mod -# Font +# Set font font monospace 10 font pango:JetBrains Mono 10

@@ -26,7 +26,7 @@ exec --no-startup-id exec nitrogen --restore

exec --no-startup-id exec setxkbmap "us,ua" ",winkeys" "grp:alt_shift_toggle" -option "ctrl:nocaps" exec --no-startup-id exec org.telegram.desktop exec --no-startup-id exec lxsession -exec --no-startup-id exec xautolock -time 3 -locker "betterlockscreen --off 180 -t \"Computer is lockerd\" -l" +exec_always --no-startup-id exec $HOME/.script/autolock exec_always --no-startup-id exec $HOME/.config/i3/bar.sh exec --no-startup-id exec discord #exec --no-startup-id exec conky

@@ -36,6 +36,7 @@ ############## WM keys ############

# Kill window bindsym $mod+q kill +bindsym --release $mod+Shift+q exec xkill # Restart i3wm bindsym $mod+Control+r restart
M config/nvim/init.vim

@@ -9,10 +9,10 @@ Plug 'mhinz/vim-startify' " Start page

Plug 'itchyny/lightline.vim' " Status line Plug 'vimwiki/vimwiki', {'on': 'VimwikiIndex'} " Notes manager in (n)vim - " Color sheme + " Color scheme Plug 'Smirnov-O/nten16.vim' - " Project/file nafigation + " Project/file navigation Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'} Plug 'ryanoasis/vim-devicons', {'on': 'NERDTreeToggle'} Plug 'preservim/tagbar', {'on': 'TagbarToggle'}

@@ -32,6 +32,7 @@ Plug 'kovetskiy/sxhkd-vim', {'for': 'sxhkd'}

Plug 'mattn/emmet-vim', {'on': 'Emmet'} Plug 'cakebaker/scss-syntax.vim', {'for': 'scss'} Plug 'PotatoesMaster/i3-vim-syntax', {'for': 'i3'} + Plug 'fatih/vim-go', {'for': 'go'} call plug#end() " Colors

@@ -40,7 +41,7 @@ set background=dark

colo nten16 set t_Co=256 -" Syntax & line numbars +" Syntax & line numbers syntax on set number set relativenumber

@@ -88,6 +89,10 @@ " Buffer

set hidden set smartindent +" Spell +set spell +set spelllang=en_us + " Disable sound set visualbell t_vb=

@@ -178,6 +183,9 @@ let g:floaterm_width = 0.6

let g:floaterm_autoclose = 2 nmap <A-t> :FloatermNew<CR> +" Go +let g:go_template_autocreate = 0 + " == Maping let mapleader=","

@@ -212,6 +220,3 @@

" Buffer(s) noremap <leader>p :bnext<CR> noremap <leader>o :bprev<CR> - -" Autostart -"autocmd VimEnter * execute "source ~/.config/nvim/init.vim"
A script/autolock

@@ -0,0 +1,2 @@

+#!/bin/sh +xautolock -time 3 -locker "betterlockscreen --off 180 -t 'Computer is lokerd' -l"
M script/dmenu/dmenu-power.sh

@@ -4,7 +4,7 @@ Lock

Logout Reboot") -choice=$(echo -e "${options[@]}" | dmenu -p "Power" $@) +choice=$(echo -e "${options[@]}"|dmenu -p "Power" $@) case "$choice" in "ShutDown") case "$(echo -e "Yes\nNo"|dmenu -p "ShutDown" $@)" in