Skip to content

Commit

Permalink
chore: release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dzfrias committed Jun 27, 2023
1 parent 25511f0 commit 7b00650
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "projectable"
authors = ["Diego Frias <styx5242@gmail.com>"]
version = "1.1.0"
version = "1.2.0"
description = """
projectable is a highly configurable TUI project manager. You can do everything
your project needs from a comfortable and smooth interface, instead of exploring
Expand Down
3 changes: 2 additions & 1 deletion extras/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ use_git = true
ignore = []
use_gitignore = true
refresh_time = 1000
dirs_first = true
# Display directories before files
dirs_first = false
show_hidden_by_default = false

# Keys
Expand Down
3 changes: 3 additions & 0 deletions src/config_defaults/_my_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ ctrl-x = "tmux split-window -v nvim {}"
[preview]
preview_cmd = "bat --force-colorization {} --line-range 0:1000"
git_pager = "delta"

[filetree]
dirs_first = true
2 changes: 1 addition & 1 deletion src/config_defaults/unix.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ use_git = true
ignore = []
use_gitignore = true
refresh_time = 1000
dirs_first = true
dirs_first = false
show_hidden_by_default = false

# Keys
Expand Down
2 changes: 1 addition & 1 deletion src/config_defaults/windows.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ use_git = true
ignore = []
use_gitignore = true
refresh_time = 1000
dirs_first = true
dirs_first = false
show_hidden_by_default = false

# Keys
Expand Down

0 comments on commit 7b00650

Please sign in to comment.