1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-12 20:41:16 +02:00

nvim: added markdown preview, restructured plugins for easier cleanup

This commit is contained in:
2023-07-29 14:54:59 +02:00
parent a065c3d401
commit 1ea26420bf
5 changed files with 74 additions and 72 deletions

View File

@@ -5,6 +5,9 @@ vim.o.showmode = false
vim.o.mouse = 'a'
vim.o.clipboard = 'unnamedplus'
-- basic color settings
vim.o.background = 'dark'
-- setting Tab-length
vim.o.expandtab = true
vim.o.softtabstop = 4
@@ -40,10 +43,13 @@ vim.o.lazyredraw = true
-- textEdit might fail without hidden
vim.o.hidden = true
-- disable Backupfiles for Lsp
-- disable backupfiles
vim.o.nobackup = true
vim.o.nowritebackup = true
-- Set completeopt to have a better completion experience
vim.o.completeopt = 'menuone,noselect'
-- always show the signcolumn
vim.o.signcolumn = "yes"
@@ -63,6 +69,3 @@ require('loadplugins')
-- load general mapped keys
require('keymap')
-- load general colorscheme
require('colorscheme')