[2024-10-12] New custom colour scheme, statusline updates
This commit is contained in:
parent
42920643c2
commit
d6b161f2d6
9
nvim/colors/gruv.vim
Normal file
9
nvim/colors/gruv.vim
Normal file
@ -0,0 +1,9 @@
|
||||
" load the retrobox colorscheme
|
||||
runtime colors/retrobox.vim
|
||||
let g:colors_name = 'gruv'
|
||||
highlight CursorLineNr guibg=NONE gui=bold
|
||||
highlight SpellBad guibg=Normal guifg=Normal gui=undercurl guisp=red
|
||||
highlight SpellCap guibg=Normal guifg=Normal gui=undercurl guisp=blue
|
||||
highlight SpellLocal guibg=Normal guifg=Normal gui=undercurl guisp=pink
|
||||
highlight SpellRare guibg=Normal guifg=Normal gui=undercurl guisp=aqua
|
||||
"highlight StatusLine gui=bold "guibg=Normal guifg=Normal
|
@ -20,4 +20,4 @@ highlight Comment gui=italic
|
||||
highlight Constant guifg=#999999
|
||||
highlight NormalFloat guibg=#666666
|
||||
highlight CursorLineNr guibg=NONE gui=bold
|
||||
highlight StatusLine guibg=Normal guifg=Normal
|
||||
" highlight StatusLine guibg=Normal guifg=Normal
|
||||
|
@ -11,7 +11,7 @@ Plug 'MunifTanjim/nui.nvim'
|
||||
"Plug 'nvim-neo-tree/neo-tree.nvim', { 'branch': 'v3.x' }
|
||||
Plug 'lewis6991/gitsigns.nvim' " OPTIONAL: for git status
|
||||
" Plug 'nvim-tree/nvim-web-devicons' " OPTIONAL: for file icons
|
||||
Plug 'freddiehaddad/feline.nvim'
|
||||
" Plug 'freddiehaddad/feline.nvim'
|
||||
Plug 'neovim/nvim-lspconfig'
|
||||
" main one
|
||||
Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
||||
@ -32,7 +32,7 @@ endif
|
||||
|
||||
colo mine
|
||||
set noshowmode
|
||||
set laststatus=3
|
||||
set laststatus=2
|
||||
set cmdheight=0
|
||||
|
||||
set statusline=%{%v:lua.require('plugins.statusline').statusline()%}
|
||||
|
@ -2,12 +2,16 @@ local M = {}
|
||||
|
||||
M.modeMap = {
|
||||
n = "NORMAL", i = "INSERT", R = "REPLACE", v = "VISUAL", V = "V-LINE", [''] = "V-BLOCK",
|
||||
c = "COMMAND", s = "SELECT", S = "S-LINE", [''] = "S-BLOCK", t = "TERMINAL"
|
||||
c = "COMMAND", s = "SELECT", S = "S-LINE", [''] = "S-BLOCK", nt = "NORMAL", t = "TERMINAL"
|
||||
}
|
||||
|
||||
GetMode = function()
|
||||
local m = vim.api.nvim_get_mode().mode
|
||||
if M.modeMap[m] ~= nil then
|
||||
return M.modeMap[m] .. " "
|
||||
else
|
||||
return ""
|
||||
end
|
||||
end
|
||||
|
||||
GetDate = function()
|
||||
@ -28,9 +32,9 @@ GetLSP = function()
|
||||
local sandbox = root:match(".+/([^/]+)$")
|
||||
--local handle = io.popen('p4 opened | grep tnrCRCDecode | sed \'s/^[^#]*//g\'')
|
||||
--local result = handle:read("*a")
|
||||
return string.format('[%s -> %s]',name,sandbox)
|
||||
return string.format('| %s -> %s ',name,sandbox)
|
||||
else
|
||||
return "[" .. name .. "] "
|
||||
return "| " .. name .. " "
|
||||
end
|
||||
else
|
||||
return ''
|
||||
@ -42,14 +46,14 @@ GetGitStatus = function()
|
||||
local inRepo = signs.head ~= ''
|
||||
|
||||
return inRepo and string.format(
|
||||
'[%s: +%s ~%s -%s] ',
|
||||
'| %s: +%s ~%s -%s ',
|
||||
signs.head, signs.added, signs.changed, signs.removed
|
||||
) or ''
|
||||
end
|
||||
|
||||
function M.statusline()
|
||||
local sline = " "
|
||||
sline = sline .. GetMode() .. GetGitStatus() .. GetLSP() .. "%=" .. GetDate() .. " " .. GetTime() .. " "
|
||||
sline = sline .. GetMode() .. GetGitStatus() .. GetLSP() .. "%=" .. GetDate() .. " | " .. GetTime() .. " "
|
||||
return sline
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user