vim again

This commit is contained in:
Philipp Hochkamp 2022-12-27 17:47:30 +01:00
parent ba6f5ed81b
commit d1394482e4
8 changed files with 140 additions and 57 deletions

View file

@ -1,3 +1,6 @@
-- mapleader
vim.g.mapleader = ' '
require('utils')
require('keybindings')
require('filetypes')
@ -8,8 +11,9 @@ require('plugin.nnn')
require('plugin.rainbow')
require('plugin.terminal')
-- plugins - coc
-- vim.cmd 'source ~/.config/nvim/coc.vim' -- too lazy to convert all the shit to lua
vim.cmd 'source ~/.config/nvim/coc.vim' -- too lazy to convert all the shit to lua
-- terminal
vim.cmd 'source ~/.config/nvim/terminal.vim' -- too lazy to convert all the shit to lua
@ -19,6 +23,7 @@ vim.cmd ':colorscheme gruvbox'
opt.termguicolors = true -- 24bit color
opt.background = 'dark' -- dark gruvbox
-- general settings
vim.cmd [[
filetype plugin on
@ -43,5 +48,5 @@ opt.softtabstop = 2
-- buffers don't get unloaded when hidden
opt.hidden = true
-- low updatetime so it isnt as slow
opt.updatetime = 200
opt.updatetime = 100
require('plugin.lualine')