nvim: organize a bunch of color / visual details
This commit is contained in:
@ -7,3 +7,4 @@ require("plugins")
|
|||||||
load("options")
|
load("options")
|
||||||
load("mappings")
|
load("mappings")
|
||||||
load("disablebuiltin")
|
load("disablebuiltin")
|
||||||
|
load("colors")
|
||||||
|
|||||||
1
.config/nvim/lua/colors.lua
Normal file
1
.config/nvim/lua/colors.lua
Normal file
@ -0,0 +1 @@
|
|||||||
|
vim.cmd 'colorscheme wal'
|
||||||
@ -19,6 +19,7 @@ opt.sw = 4
|
|||||||
opt.swapfile = false
|
opt.swapfile = false
|
||||||
opt.timeoutlen = 500
|
opt.timeoutlen = 500
|
||||||
opt.ts = 4
|
opt.ts = 4
|
||||||
|
opt.laststatus = 3
|
||||||
-- opt.wrap = false
|
-- opt.wrap = false
|
||||||
|
|
||||||
-- :JsonFormat command using jq
|
-- :JsonFormat command using jq
|
||||||
|
|||||||
@ -165,7 +165,6 @@ require('packer').startup(function()
|
|||||||
use {
|
use {
|
||||||
-- 'crusoexia/vim-monokai',
|
-- 'crusoexia/vim-monokai',
|
||||||
'dylanaraps/wal.vim',
|
'dylanaraps/wal.vim',
|
||||||
config = function() require('plugins.colors') end,
|
|
||||||
after = 'nvim-treesitter'
|
after = 'nvim-treesitter'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -14,4 +14,3 @@ lsp.gopls.setup{}
|
|||||||
lsp.clangd.setup{}
|
lsp.clangd.setup{}
|
||||||
lsp.texlab.setup{}
|
lsp.texlab.setup{}
|
||||||
lsp.rust_analyzer.setup{}
|
lsp.rust_analyzer.setup{}
|
||||||
lsp.jdtls.setup{ cmd = { "jdtls" } }
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
cfg = {
|
cfg = {
|
||||||
hint_prefix = " ", -- Panda for parameter
|
hint_prefix = " ",
|
||||||
handler_opts = {
|
handler_opts = {
|
||||||
border = "single" -- double, rounded, single, shadow, none
|
border = "none"
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user