Skip to content

brandonszeto/nvim-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My NeoVim Configuration

TODO List:

  • Bind caps lock to escape

Tmux + Nvim Integration

-- Navigate panes (from both nvim/tmux)
{ "<c-h>", "<c-j>", "<c-k>", "<c-l>" }

-- Tmux bindings
{ 
  "<c-A>c",           -- create window
  "<c-A>n", "<c-A>p", -- next and previous windows
  "<c-A>&",           -- kill current window
}

Miscellaneous (utility)

{ 
  -- Vim-surround
  "ysiw]", -- word        -> [word]
  "ysiw[", -- word        -> [ word ]
  "yss[",  -- line        -> [line]
  "yss]",  -- line        -> [ line ]
  "S[",    -- selection   -> [selection]
  "S]",    -- selection   -> [ selection ]
  "ds]",   -- [word]      -> word
  "cs[",   -- [word]      -> "word"
  "cst]",  -- <q>word</q> -> [word]

  -- Vim-commentary
  "gcc",   -- comment line 
  "gcap",  -- comment out a paragraph
  "gc",    -- comment selected lines
}

Miscellaneous (aesthetics)

LSP

Git

Telescope

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages