Vim new plugin manager, changed settings, i3 new layout, removed git modules

This commit is contained in:
Tristaan
2018-08-21 16:17:38 +02:00
parent 65c9d816b8
commit 2f48e3a2ce
18 changed files with 2773 additions and 141 deletions

View File

@@ -214,8 +214,7 @@ bindsym $mod+Shift+Down move workspace to output down
#//WORKSPACES//#
#--LAYOUTS--#
bindsym $alt+Shift+l exec i3-msg "append_layout $HOME/.i3/layouts/workspace-3.json" && bash $HOME/.i3/scripts/term_runner.sh -d $HOME/build/doc24_backend -d $HOME/build/doc24_backend -d $HOME/build/doc24_backend -d $HOME
bindsym $alt+Shift+l exec $HOME/.i3/scripts/workspace.sh "$HOME/.i3/layouts/workspace-3.json" "$HOME/build/doc24_backend"
#//LAYOUTS//#
# resize window (you can also use the mouse for that)

View File

@@ -1,14 +1,15 @@
// vim:ts=4:sw=4:et
{
// stacked split container with 1 children
// stacked split container with 2 children
"border": "pixel",
"floating": "auto_off",
"layout": "stacked",
"percent": 0.6,
"percent": 0.7,
"type": "con",
"nodes": [
{
"border": "pixel",
"current_border_width": 2,
"border": "none",
"current_border_width": 4,
"floating": "auto_off",
"geometry": {
"height": 768,
@@ -16,12 +17,32 @@
"x": 0,
"y": 0
},
"name": "tristan@T-i3: ~/build",
"percent": 1,
"name": "tristan@T-i3: ~/build/doc24_backend",
"percent": 0.5,
"swallows": [
{
"class": "^Alacritty$",
"instance": "^Alacritty$"
"instance": "^alacritty$"
}
],
"type": "con"
},
{
"border": "none",
"current_border_width": 4,
"floating": "auto_off",
"geometry": {
"height": 768,
"width": 1024,
"x": 0,
"y": 0
},
"name": "i3-save-tree --workspace 3 > ~/.i3/layouts/workspace-3.json",
"percent": 0.5,
"swallows": [
{
"class": "^Alacritty$",
"instance": "^alacritty$"
}
],
"type": "con"
@@ -34,62 +55,12 @@
"border": "pixel",
"floating": "auto_off",
"layout": "splitv",
"percent": 0.4,
"percent": 0.3,
"type": "con",
"nodes": [
{
// tabbed split container with 2 children
"border": "pixel",
"floating": "auto_off",
"layout": "tabbed",
"percent": 0.5,
"type": "con",
"nodes": [
{
"border": "pixel",
"current_border_width": 2,
"floating": "auto_off",
"geometry": {
"height": 768,
"width": 1024,
"x": 0,
"y": 0
},
"name": "tristan@T-i3: ~/build",
"percent": 0.5,
"swallows": [
{
"class": "^Alacritty$",
"instance": "^Alacritty$"
}
],
"type": "con"
},
{
"border": "pixel",
"current_border_width": 4,
"floating": "auto_off",
"geometry": {
"height": 768,
"width": 1024,
"x": 0,
"y": 0
},
"name": "tristan@T-i3: ~/build/doc24_backend",
"percent": 0.5,
"swallows": [
{
"class": "^Alacritty$",
"instance": "^Alacritty$"
}
],
"type": "con"
}
]
},
{
"border": "pixel",
"current_border_width": 2,
"border": "none",
"current_border_width": 4,
"floating": "auto_off",
"geometry": {
"height": 768,
@@ -97,16 +68,34 @@
"x": 0,
"y": 0
},
"name": "nvim .i3/config",
"name": "tristan@T-i3: ~",
"percent": 0.5,
"swallows": [
{
"class": "^Alacritty$",
"instance": "^Alacritty$"
"class": "^Alacritty$"
}
],
"type": "con"
},
{
"border": "none",
"current_border_width": 4,
"floating": "auto_off",
"geometry": {
"height": 768,
"width": 1024,
"x": 0,
"y": 0
},
"name": "tristan@T-i3: ~/build/doc24_backend",
"percent": 0.5,
"swallows": [
{
"class": "^Alacritty$"
}
],
"type": "con"
}
]
}
// vim:ts=4:sw=4:et

2
.i3/scripts/workspace.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
i3-msg "append_layout $1" && bash $HOME/.i3/scripts/term_runner.sh -d "$2" -d "$2" -d "$2" -d "$HOME"