aboutsummaryrefslogtreecommitdiff
path: root/Documents
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-07-21 15:53:52 +0300
committereug-vs <eug-vs@keemail.me>2021-07-21 16:04:10 +0300
commitcf3eefda31e98d4725a64000861a388ba7708c62 (patch)
tree7e0028cede47398c74056c92af30c515bc8f9579 /Documents
parent26d393eacb0468edeed62befe365c1ae0752a680 (diff)
downloaddotfiles-feat/stow.tar.gz
feat!: move to GNU Stow, remove wikifeat/stow
Diffstat (limited to 'Documents')
-rw-r--r--Documents/wiki/environment.md49
-rw-r--r--Documents/wiki/index.md7
-rw-r--r--Documents/wiki/tmux.md15
-rw-r--r--Documents/wiki/vim.md30
4 files changed, 0 insertions, 101 deletions
diff --git a/Documents/wiki/environment.md b/Documents/wiki/environment.md
deleted file mode 100644
index 9c160bd..0000000
--- a/Documents/wiki/environment.md
+++ /dev/null
@@ -1,49 +0,0 @@
-# Environment
-I try to keep my desktop very minimal and [suckless](https://suckless.org).
-
-![docs screenshot](../../Pictures/Porn/docs.png)
-
-## General
-
-### Dynamic Window Manager
-I use my own patched version of [suckless `dwm`](https://dwm.suckless.org/): https://github.com/eug-vs/dwm
-
-Patches included:
- - Respects [Xresources](../../.Xresources)
- - `Mod` is set to `Super`
- - Unused tags are hidden
- - Gaps between windows
- - Customized bar
- - [Swallow](https://dwm.suckless.org/patches/swallow/) patch
-
-
-### Simple terminal
-I use my own patched version of [suckless `st`](https://st.suckless.org/): https://github.com/eug-vs/st
-
-Patches included:
- - Respects [Xresources](../../.Xresources)
- - Zoom `Ctrl+(-/0)`
- - Fills all space allocated by WM
-
-
-### Dmenu - application launcher
-I also use customized `dmenu`: https://github.com/eug-vs/dmenu
-
-Patches included:
- - Respects [Xresources](../../.Xresources)
- - Matches line height to statusbar
-
-
-### Dwmblocks - status bar
-I use `dwmblocks` combined with [i3blocks-modules](https://github.com/cytopia/i3blocks-modules) scripts for a cool status bar: https://github.com/eug-vs/dwmblocks
-
-
-## Appearance
-Appearance of all apps is controlled via [Xresources](../../.Xresources).
-
-### Colorscheme
-I <3 `gruvbox`: https://github.com/morhetz/gruvbox
-
-### Fonts
-I use `nerd-fonts`, at the moment my font of choice is `Fira Code`.
-
diff --git a/Documents/wiki/index.md b/Documents/wiki/index.md
deleted file mode 100644
index 3d83627..0000000
--- a/Documents/wiki/index.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Wiki index
-
-## General
- - [environment](environment.md) - window manager and appearance
- - [tmux](tmux.md) - terminal multiplexer
- - [vim](vim.md) - minimal Neovim configuration and tips
-
diff --git a/Documents/wiki/tmux.md b/Documents/wiki/tmux.md
deleted file mode 100644
index 0375f73..0000000
--- a/Documents/wiki/tmux.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# tmux
-
-Cheatsheet: https://tmuxcheatsheet.com/?q=yyyy&hPP=100&idx=tmux_cheats&p=0&is_v=1
-
-## Plugins
-Plugin manager: https://github.com/tmux-plugins/tpm
-
-Seamless navigation with `vim` (`<C-[hjkl]>`): https://github.com/christoomey/vim-tmux-navigator
-
-## Project management
-Manage sessions: https://github.com/tmuxinator/tmuxinator
-
-Startup tmuxinator sessions quickly: https://github.com/viniarck/rofi-tmux
-
-My admin session: [admin.yml](../../.config/tmuxinator/admin.yml)
diff --git a/Documents/wiki/vim.md b/Documents/wiki/vim.md
deleted file mode 100644
index 2b94eec..0000000
--- a/Documents/wiki/vim.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Vim
-
-After having used [Spacevim](https://spacevim.org/) for quite a while,
-I've decided to switch back to classic Neovim and keep configuration as tight and minimal as possible.
-
-I keep my configuration in casual `~/.vimrc` which is sourced by Neovim in `init.vim`.
-
-## Vim-plug
-Some functionality still requires me to install a few plugins, and `vim-plug` is my plugin manager of choice.
-Intsallation (note that command is custom):
-```bash
-curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
-```
-
-All plugins are listed in [`.config/nvim/vim-plug/plugins.vim`](../../.config/nvim/vim-plug/plugins.vim) and sourced from `init.vim` directly (before `~/.vimrc`).
-
-## Featured plugins
-
-### [Defx](https://github.com/Shougo/defx.nvim)
-I like to always keep a tree-view of my project at hand. This is the best option out there - dark-powered file explorer.
-
-### [Startify](https://github.com/mhinz/vim-startify)
-Provides a cool startup screen. Also allows to manage sessions more easily, but I haven't got used to them yet.
-Not essential, I might get rid of it in future.
-
-### [VimWiki](https://github.com/vimwiki/vimwiki)
-VimWiki made this documentation possible.
-
-Custom mapping: `<Leader>c` - toggle conceal level (to comfortably edit links)
-