From 173fa5ba4709a5c79325b40c403d5ce4078bb7d4 Mon Sep 17 00:00:00 2001 From: Matthew Wozniak Date: Fri, 29 Dec 2023 19:40:26 -0500 Subject: --amend --- after/plugin/cfg.vim | 20 ++++++++++++++++++++ after/plugin/lualine.lua | 7 +++++++ 2 files changed, 27 insertions(+) create mode 100644 after/plugin/cfg.vim create mode 100644 after/plugin/lualine.lua (limited to 'after/plugin') diff --git a/after/plugin/cfg.vim b/after/plugin/cfg.vim new file mode 100644 index 0000000..f21e1ad --- /dev/null +++ b/after/plugin/cfg.vim @@ -0,0 +1,20 @@ +let g:mapleader = ' ' +set number +set ff=unix ffs=unix,dos +set sw=4 ts=4 noet tw=80 cc=80 +set spr sb +set pb=12 winbl=12 +set nowrap +set ruler +set background=dark +set autoread +set formatoptions+=j +set guioptions-=r +set guioptions-=R +set guioptions-=l +set guioptions-=L +set gfn=DejaVu\ Sans\ Mono:h12 +set noshowmode + +colorscheme seoul256 +hi Normal guibg=NONE ctermbg=NONE diff --git a/after/plugin/lualine.lua b/after/plugin/lualine.lua new file mode 100644 index 0000000..20de644 --- /dev/null +++ b/after/plugin/lualine.lua @@ -0,0 +1,7 @@ +require('lualine').setup { + options = { + component_separators = { left = '', right = ''}, + section_separators = { left = '', right = ''}, +-- theme = require('lualine.themes.powerline'), + } +} -- cgit v1.2.3-54-g00ecf