diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-14 19:48:38 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-14 20:05:12 +0200 |
commit | 7dcd592eae886dc8edde2dc65d6e6323201a2aaf (patch) | |
tree | 8c792984bd55d710dd409bcc90d450e2e90a58ce /lua/user/set.lua | |
parent | 6081f67ec9f5032fcd9d4453a2646ca033364615 (diff) |
checkpoint
- changed installation of tmux-navigator
- removed init.lua file in user/ directory
- added autocmd for terminal in insert mode
- added keybind for opening terminal
- added keybinds for lsp commands
- added lua lsp setup
- added nvim-cmp
- added keybind for editing config
- added keybinds for opening splits
- added conceallevel = 2
- commented encoding options
- plugins:
- added go.nvim
- added cmp-calc
- markdown:
- disable pairs for quotes
- added pairs in markdown
- go:
- added go lsp
- added autoformat of go files on save
Diffstat (limited to 'lua/user/set.lua')
-rw-r--r-- | lua/user/set.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/user/set.lua b/lua/user/set.lua index cb8dba4..6040c72 100644 --- a/lua/user/set.lua +++ b/lua/user/set.lua @@ -3,6 +3,7 @@ local opt = vim.opt -- Don't highlight on search opt.hlsearch = false opt.incsearch = true +opt.conceallevel = 2 -- Enable line numbers by default opt.number = true @@ -79,8 +80,8 @@ opt.backspace = "indent,eol,start" opt.laststatus = 2 opt.history = 200 -opt.encoding = "utf-8" -opt.fileencoding = "utf-8" +-- opt.encoding = "utf-8" +-- opt.fileencoding = "utf-8" opt.smartindent = true opt.scrolloff = 8 |