alpha
Login
or
Join now
j3s.sh
/
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
my dotz
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
no neorg, add shmoji, etc
author
Jes Olson
date
3 years ago
(Dec 27, 2022, 12:16 PM -0800)
commit
8448069c
8448069cbcb3cff18fa14415452e036afba5ae32
parent
7b50cb2f
7b50cb2f6268419460d8fbee525b5acdb5a04ff1
+9
-9
4 changed files
Expand all
Collapse all
Unified
Split
.config
kanshi
config
nvim
init.vim
sway
config
.tmux.conf
+1
-1
.config/kanshi/config
Reviewed
···
4
4
5
5
profile {
6
6
output eDP-1 disable
7
7
-
output DP-1 enable
7
7
+
output DP-1 enable mode 2560x1440
8
8
}
9
9
10
10
profile {
+4
-8
.config/nvim/init.vim
Reviewed
···
2
2
Plug 'junegunn/vim-easy-align'
3
3
Plug 'neovim/nvim-lspconfig'
4
4
Plug 'nvim-lua/plenary.nvim' " lua funcs i guess
5
5
-
Plug 'vhyrro/neorg'
6
5
Plug 'hrsh7th/nvim-compe'
7
6
Plug 'ctrlpvim/ctrlp.vim'
8
7
Plug 'cormacrelf/vim-colors-github'
···
20
19
lua << EOF
21
20
require'lspconfig'.gopls.setup{}
22
21
require'lspconfig'.terraformls.setup{}
23
23
-
require('neorg').setup {
24
24
-
load = {
25
25
-
["core.defaults"] = {},
26
26
-
["core.norg.concealer"] = {},
27
27
-
}
28
28
-
}
29
22
EOF
30
23
31
24
" set keybinds for go LSP - warning: disgusting
···
85
78
augroup filetypedetect
86
79
autocmd BufRead,BufNewFile *mutt-* setfiletype mail
87
80
augroup filetypedetect
81
81
+
autocmd FileType json setlocal et ts=2 sw=2
82
82
+
" markdown auto-wrapping per
83
83
+
" https://vi.stackexchange.com/questions/9421/how-to-make-formatoptions-a-useful
84
84
+
autocmd FileType markdown set fo+=aw
88
85
autocmd FileType markdown setlocal tw=80 et ts=2 sw=2
89
89
-
autocmd FileType json setlocal et ts=2 sw=2
90
86
91
87
" terraform ft detection
92
88
" vint: -ProhibitAutocmdWithNoGroup
+2
.config/sway/config
Reviewed
···
45
45
bindsym $mod+Return exec $term
46
46
bindsym $mod+Shift+Return exec $term --title 'weallfloatdownhere'
47
47
bindsym $mod+Shift+q kill
48
48
+
bindsym $mod+Home exec swaylock
48
49
bindsym Delete exec makoctl dismiss
49
50
bindsym $mod+Delete exec makoctl dismiss --all
50
51
bindsym Mod1+Shift+Return Return
51
52
bindsym $mod+d exec bemenu-run -l 20 -c -W 0.2
52
53
bindsym $mod+Shift+p exec --no-startup-id pa-bemenu
54
54
+
bindsym $mod+Shift+o exec --no-startup-id shmoji bemenu
53
55
bindsym $mod+Shift+c reload
54
56
bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
55
57
+2
.tmux.conf
Reviewed
···
1
1
# Global opts
2
2
+
set -g base-index 1
3
3
+
setw -g pane-base-index 1
2
4
setw -g mode-keys vi
3
5
set-option -sg escape-time 0
4
6
set -s escape-time 0