summaryrefslogtreecommitdiff
path: root/after
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <sirtomato999@gmail.com> 2023-12-29 19:40:26 -0500
committerGravatar Matthew Wozniak <sirtomato999@gmail.com> 2023-12-29 19:40:26 -0500
commit173fa5ba4709a5c79325b40c403d5ce4078bb7d4 (patch)
treea5bc3346128a0b14848001e0be6a6a383a875a27 /after
parent047ea7318b352692b0c2cb49590d75ea1588c148 (diff)
downloadnvim-173fa5ba4709a5c79325b40c403d5ce4078bb7d4.tar.gz
nvim-173fa5ba4709a5c79325b40c403d5ce4078bb7d4.zip
--amend
Diffstat (limited to 'after')
-rw-r--r--after/plugin/cfg.vim20
-rw-r--r--after/plugin/lualine.lua7
2 files changed, 27 insertions, 0 deletions
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'),
+ }
+}