commit b0afc932cb1587acbc510f8ec32d2088fe16c440
parent cfaa9ddab5ed21ccd318a1e34f27958bb6c7e945
Author: hhvn <dev@hhvn.uk>
Date: Sun, 11 Jul 2021 16:17:40 +0100
.c/n/m/window.vim: remove
Diffstat:
1 file changed, 0 insertions(+), 19 deletions(-)
diff --git a/.config/nvim/modules/window.vim b/.config/nvim/modules/window.vim
@@ -1,19 +0,0 @@
-hi Float ctermbg=0 cterm=none ctermfg=256 gui=none guibg=#141726 guifg=none
-
-function! Winmsg()
- let width=&columns+4
- let height=20
- let top=&lines-height-1
- echo top
- let left=-2
- let opts = {'relative': 'editor', 'row': top, 'col': left, 'width': width, 'height': height, 'style': 'minimal'}
- let opts.row += 1
- let opts.height -= 2
- let opts.col += 2
- let opts.width -= 4
- call nvim_open_win(nvim_create_buf(v:false, v:true), v:true, opts)
-endfunction
-
-function! Winset()
- setlocal winhl=Normal:Float
-endfunction