diff options
-rw-r--r-- | after/plugin/cfg.vim | 20 | ||||
-rw-r--r-- | after/plugin/lualine.lua | 7 |
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'), + } +} |