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:
@@ -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')
|
||||
|
Reference in New Issue
Block a user