ineedatopbar
This commit is contained in:
parent
b537426c50
commit
f0be3cb7ca
16
init.lua
16
init.lua
|
@ -19,6 +19,7 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
|
|
||||||
-- [[ Configure plugins ]]
|
-- [[ Configure plugins ]]
|
||||||
-- NOTE: Here is where you install your plugins.
|
-- NOTE: Here is where you install your plugins.
|
||||||
-- You can configure plugins using the `config` key.
|
-- You can configure plugins using the `config` key.
|
||||||
|
@ -247,6 +248,8 @@ vim.wo.relativenumber = true
|
||||||
vim.wo.list = true
|
vim.wo.list = true
|
||||||
vim.wo.listchars = "tab:»·,trail:·,extends:>,precedes:<,nbsp:."
|
vim.wo.listchars = "tab:»·,trail:·,extends:>,precedes:<,nbsp:."
|
||||||
vim.wo.colorcolumn = '120'
|
vim.wo.colorcolumn = '120'
|
||||||
|
vim.wo.wrap = false
|
||||||
|
|
||||||
|
|
||||||
-- Enable mouse mode
|
-- Enable mouse mode
|
||||||
vim.o.mouse = 'a'
|
vim.o.mouse = 'a'
|
||||||
|
@ -627,11 +630,22 @@ cmp.setup {
|
||||||
}
|
}
|
||||||
|
|
||||||
vim.cmd [[
|
vim.cmd [[
|
||||||
call quickui#menu#install('&View', [
|
call quickui#menu#install('&Plugins', [
|
||||||
\ ['&Neotree', ':Neotree'],
|
\ ['&Neotree', ':Neotree'],
|
||||||
|
\ ['&VSP', ':vsp'],
|
||||||
|
\ ['&SP', ':sp'],
|
||||||
\ ])
|
\ ])
|
||||||
]]
|
]]
|
||||||
|
|
||||||
|
vim.cmd [[
|
||||||
|
call quickui#menu#install('&IDE', [
|
||||||
|
\ ['&TabNew', ':tabnew'],
|
||||||
|
\ ['&TabNext', ':tabnext'],
|
||||||
|
\ ['&TabPrev', ':tabprev'],
|
||||||
|
\ ])
|
||||||
|
]]
|
||||||
|
|
||||||
|
|
||||||
vim.api.nvim_set_keymap('n', '<leader>m', ':call quickui#menu#open()<CR>', { noremap = true })
|
vim.api.nvim_set_keymap('n', '<leader>m', ':call quickui#menu#open()<CR>', { noremap = true })
|
||||||
vim.cmd([[ let g:quickui_color_scheme = 'papercol_dark' ]])
|
vim.cmd([[ let g:quickui_color_scheme = 'papercol_dark' ]])
|
||||||
-- The line beneath this is called `modeline`. See `:help modeline`
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||||
|
|
Loading…
Reference in New Issue