diff options
Diffstat (limited to 'fnl/settings')
-rw-r--r-- | fnl/settings/keymaps.fnl | 13 | ||||
-rw-r--r-- | fnl/settings/options.fnl | 3 |
2 files changed, 4 insertions, 12 deletions
diff --git a/fnl/settings/keymaps.fnl b/fnl/settings/keymaps.fnl index 8c3f046..83b9917 100644 --- a/fnl/settings/keymaps.fnl +++ b/fnl/settings/keymaps.fnl @@ -9,14 +9,6 @@ (set nvim.g.mapleader " ") (set nvim.g.maplocalleader " ") -;; Modes -;; normal_mode = "n" -;; insert_mode = "i" -;; visual_mode = "v" -;; visual_block_mode = "x" -;; term_mode = "t" -;; command_mode = "c" - ;; Normal ;; ;; Better window navigation (map :n :<C-h> :<C-w>h opts) @@ -30,10 +22,6 @@ (map :n :<C-Left> ":vertical resize -2<CR>" opts) (map :n :<C-Right> ":vertical resize +2<CR>" opts) -;; Navigate buffers -;; (map :n :<tab> ":bnext<CR>" opts) -;; (map :n :<S-tab> ":bprevious<CR>" opts) - ;; Visual ;; ;; Stay in indent mode (map :v "<" :<gv opts) @@ -59,3 +47,4 @@ (map :n :<m-n> :<cmd>nohlsearch<CR> opts) (map :n :Q "<cmd>:q<CR>" opts) +(map :n "-" "<cmd>:Explore<cr>" opts) diff --git a/fnl/settings/options.fnl b/fnl/settings/options.fnl index 0a1a254..bc82be7 100644 --- a/fnl/settings/options.fnl +++ b/fnl/settings/options.fnl @@ -88,3 +88,6 @@ (nvim.ex.set :formatoptions-=cro) (nvim.ex.set :colorcolumn=80) (nvim.ex.set :shortmess+=c) +(set vim.g.netrw_browse_split 0) +(set vim.g.netrw_banner 0) +(set vim.g.netrw_winsize 25) |