summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/.local/bin/gitit2
-rwxr-xr-xnvim/.config/nvim/init.vim4
-rwxr-xr-xx/.Xresources7
-rwxr-xr-xzsh/.zshrc2
4 files changed, 11 insertions, 4 deletions
diff --git a/bin/.local/bin/gitit b/bin/.local/bin/gitit
index af3eeec..5d576c2 100755
--- a/bin/.local/bin/gitit
+++ b/bin/.local/bin/gitit
@@ -1,6 +1,6 @@
1#!/bin/sh 1#!/bin/sh
2set -e 2set -e
3printf "\033[0;32mDeploying updates to GitHub...\033[0m\n" 3printf "\033[0;32mDeploying updates to server...\033[0m\n"
4git add . 4git add .
5msg="changes" 5msg="changes"
6if [ -n "$*" ]; then 6if [ -n "$*" ]; then
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim
index 77f58a6..71e4054 100755
--- a/nvim/.config/nvim/init.vim
+++ b/nvim/.config/nvim/init.vim
@@ -11,6 +11,7 @@ Plug 'airblade/vim-gitgutter'
11Plug 'godlygeek/tabular' 11Plug 'godlygeek/tabular'
12Plug 'plasticboy/vim-markdown' 12Plug 'plasticboy/vim-markdown'
13Plug 'vuciv/vim-bujo' 13Plug 'vuciv/vim-bujo'
14Plug 'lervag/vimtex'
14call plug#end() 15call plug#end()
15 16
16" sets 17" sets
@@ -82,6 +83,9 @@ let g:vim_markdown_yaml_frontmatter=1
82let g:vim_markdown_folding_disabled=1 83let g:vim_markdown_folding_disabled=1
83let g:vim_markdown_conceal=0 84let g:vim_markdown_conceal=0
84 85
86" vimtex
87let g:tex_flavor = 'latex'
88
85" insert centered 89" insert centered
86autocmd InsertEnter * norm zz 90autocmd InsertEnter * norm zz
87 91
diff --git a/x/.Xresources b/x/.Xresources
index b8ef8d7..835e93d 100755
--- a/x/.Xresources
+++ b/x/.Xresources
@@ -64,8 +64,11 @@ URxvt.titleBar : false
64URxvt.intensityStyles : false 64URxvt.intensityStyles : false
65 65
66 66
67URxvt.perl-ext-common : default,matcher,font-size 67URxvt.perl-ext-common : default,matcher,font-size,keyboard-select
68URxvt.font-size.step: 1 68URxvt.keysym.M-Escape : perl:keyboard-select:activate
69URxvt.keysym.M-s : perl:keyboard-select:search
70URxvt.keyboard-select.clipboard: true
71URxvt.font-size.step : 1
69URxvt.url-launcher : chromium 72URxvt.url-launcher : chromium
70URxvt.matcher.button : 1 73URxvt.matcher.button : 1
71 74
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 6892476..1be15dc 100755
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -7,7 +7,7 @@ setopt appendhistory hist_ignore_all_dups hist_ignore_space
7#exports 7#exports
8export VISUAL=nvim 8export VISUAL=nvim
9export EDITOR="$VISUAL" 9export EDITOR="$VISUAL"
10export BROWSER=brave 10export BROWSER=chromium
11export PATH=$PATH:$HOME/.local/bin:$HOME/bin 11export PATH=$PATH:$HOME/.local/bin:$HOME/bin
12export TERM=rxvt-unicode-256color 12export TERM=rxvt-unicode-256color
13export XDG_CURRENT_DESKTOP=bspwm 13export XDG_CURRENT_DESKTOP=bspwm