Use tmuxinator, auto session resume in vim
This commit is contained in:
parent
736ac62b19
commit
91b75d778d
3 changed files with 9 additions and 2 deletions
|
@ -13,6 +13,9 @@ HISTCONTROL=ignoreboth
|
||||||
export HISTSIZE=1000000
|
export HISTSIZE=1000000
|
||||||
export HISTFILESIZE=10000000
|
export HISTFILESIZE=10000000
|
||||||
|
|
||||||
|
# set the correct editor to open automatically
|
||||||
|
export EDITOR=nvim
|
||||||
|
|
||||||
# append to the history file rather than overwriting it
|
# append to the history file rather than overwriting it
|
||||||
shopt -s histappend
|
shopt -s histappend
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
sudo dnf install htop neovim stow tmux podman cloc npm nodejs gnome-tweak-tool
|
sudo dnf install htop neovim stow tmux podman cloc npm nodejs gnome-tweak-tool ripgrep rubygems
|
||||||
sudo dnf install cockpit pcp cockpit-pcp
|
sudo dnf install cockpit pcp cockpit-pcp
|
||||||
sudo dnf install ripgrep
|
|
||||||
|
|
||||||
mkdir -p ~/Code
|
mkdir -p ~/Code
|
||||||
cd ~/Code
|
cd ~/Code
|
||||||
|
@ -22,3 +21,5 @@ cd tla-bin
|
||||||
sudo ./install.sh /usr/local
|
sudo ./install.sh /usr/local
|
||||||
|
|
||||||
curl https://sh.rustup.rs -sSf | sh
|
curl https://sh.rustup.rs -sSf | sh
|
||||||
|
|
||||||
|
gem install tmuxinator
|
||||||
|
|
|
@ -11,6 +11,9 @@ map <C-n> :NERDTreeToggle<CR>
|
||||||
map <C-f> :Files<CR>
|
map <C-f> :Files<CR>
|
||||||
map <C-g> :Rg<CR>
|
map <C-g> :Rg<CR>
|
||||||
|
|
||||||
|
" Automatically start Obsession if we open a Session file
|
||||||
|
autocmd VimEnter * if !empty(v:this_session) && ObsessionStatus('on', 'off') == 'off' | Obsession | endif
|
||||||
|
|
||||||
" Disable mouse input
|
" Disable mouse input
|
||||||
set mouse=
|
set mouse=
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue