Compare commits

...

16 Commits

Author SHA1 Message Date
pull[bot] 0ec9d1ded1
Merge pull request #149 from dmitmel/master
[pull] master from dmitmel:master
2021-02-04 21:43:39 +00:00
Dmytro Meleshko 871aa910da [scripts] add my secret tmux attaching script 2021-02-04 22:41:27 +02:00
Dmytro Meleshko 3f7c26f124 [kitty] remove the sample config and keep only the changed bits 2021-02-04 19:59:18 +02:00
Dmytro Meleshko f35f14dba6 [kitty] enable the only two layouts I actually use 2021-02-04 19:59:18 +02:00
Dmytro Meleshko e81d4d3faa [scripts/welcome] add logo for Manjaro ARM 2021-02-04 14:52:53 +02:00
Dmytro Meleshko 56ed052f85 [zsh] display the current pyenv version in the prompt 2021-02-02 22:53:56 +02:00
Dmytro Meleshko 124221d1e3 [nvim] bring back a fix removed in 14e64127e4 2021-02-02 22:29:04 +02:00
Dmytro Meleshko 707397ae9e [nvim] disable rust-analyzer's diagnostics and autoimports 2021-02-01 12:51:34 +02:00
Dmytro Meleshko f79ed65e0c [git] add temporary files to the gitignore 2021-01-29 12:34:26 +02:00
Dmytro Meleshko abde79fbf7 [nvim+zsh] fix the need for resetting FZF_DEFAULT_OPTS on Ubuntu and derivatives 2021-01-29 01:37:49 +02:00
Dmytro Meleshko 1a1b27fa65 [zsh] fix the manpath-caused errors on shell startup once and for all 2021-01-25 18:43:49 +02:00
Dmytro Meleshko 5e5eb4d39f [nvim] fix the commentstring in po files 2021-01-25 11:04:02 +02:00
Dmytro Meleshko 9b15d6e155 [nvim] add a plugin for RON 2021-01-21 12:49:13 +02:00
Dmytro Meleshko d42428538c [nvim] make the airline theme match my syntax theme even more 2021-01-20 17:37:55 +02:00
Dmytro Meleshko b751287736 update the copyright years 2021-01-20 10:45:30 +02:00
Dmytro Meleshko f62df4016d [scripts/copy-crosscode-emoji-url] change the order of URL params 2021-01-18 11:18:34 +02:00
1 changed files with 6 additions and 0 deletions

6
scripts/tmux-attach-or-new.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
if tmux has-session; then
exec tmux attach
else
exec tmux new
fi