Compare commits
2 Commits
ebc9039915
...
ba80d54a52
| Author | SHA1 | Date | |
|---|---|---|---|
| ba80d54a52 | |||
| f63bb12b4a |
@@ -46,6 +46,7 @@ Oil usage:
|
|||||||
- `<A-h>` also goes to the parent directory
|
- `<A-h>` also goes to the parent directory
|
||||||
- `<A-l>` opens the selected file or enters the selected directory
|
- `<A-l>` opens the selected file or enters the selected directory
|
||||||
- `<C-p>` previews the selected entry
|
- `<C-p>` previews the selected entry
|
||||||
|
- `go` opens the file in external viewer
|
||||||
|
|
||||||
## Window Navigation
|
## Window Navigation
|
||||||
|
|
||||||
|
|||||||
@@ -9,4 +9,31 @@ vim.pack.add({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
require("telescope").setup({})
|
require("telescope").setup({
|
||||||
|
defaults = {
|
||||||
|
preview = {
|
||||||
|
filesize_limit = 0.1, -- in MB
|
||||||
|
},
|
||||||
|
initial_mode = "insert",
|
||||||
|
winblend = 30,
|
||||||
|
file_ignore_patterns = {
|
||||||
|
"%.git/.*",
|
||||||
|
"^%./lib/.*",
|
||||||
|
"^%./bin/.*",
|
||||||
|
"%.cache/.*",
|
||||||
|
".*%.[od]",
|
||||||
|
},
|
||||||
|
layout_strategy = "flex",
|
||||||
|
},
|
||||||
|
pickers = {
|
||||||
|
find_files = {
|
||||||
|
hidden = true,
|
||||||
|
follow = true,
|
||||||
|
},
|
||||||
|
live_grep = {
|
||||||
|
hidden = true,
|
||||||
|
follow = true,
|
||||||
|
initial_mode = "insert",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user