File Manager, Workspaces and some keybindings

- new plugins:
  . neo-tree - file manager
  . workspaces - workspace management (light projects)

- keybindings
  . <leader>g for Neogit
  . <leader>t for Neotree
  . <leader>w for WorkspacesOpen
  . <space>D for fzf.diagnostics_workspace

- options
  . truncate long lines in view (set nowrap)
This commit is contained in:
2024-09-11 22:17:32 +02:00
parent 913f8a04fd
commit bddd3dc1ee
5 changed files with 45 additions and 5 deletions

View File

@@ -25,7 +25,8 @@ vim.opt.ignorecase = true -- ignore case in searches by default
vim.opt.smartcase = true -- but make it case sensitive if an uppercase is entered
-- Wrapping movements
-- Wrapping movements and long lines
vim.opt.whichwrap = "b,s,<,>,[,]" -- wrap backspace, space and left-right cursor keys
vim.opt.wrap = false
-- formatoptions not very well set
-- vim.opt.formatoptions = "tac"