diff options
author | Chris <[email protected]> | 2021-03-21 20:02:49 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-21 20:02:49 -0400 |
commit | d9a888e96676f23321cbd07e7b15d310d4afdcce (patch) | |
tree | 4d96cfe7b97d1c62617296651dd24c46792be554 | |
parent | 0adfd1470e9fb82bbad100cfcca8340667a58df8 (diff) |
update galaxyline filetype, spaces, encoding
-rw-r--r-- | README.md | 17 | ||||
-rw-r--r-- | lua/nv-galaxyline/init.lua | 58 |
2 files changed, 58 insertions, 17 deletions
@@ -140,28 +140,25 @@ Topic](https://github.com/topics/vscode-snippets) **HIGH PRIORITY** - learn nvim-dap in depth -- add utf8 line col and spaces (maybe blame) - potentially switch to dashboard - vim ult test -- learn what opt is - -**LOW PRIORITY** - - Implement what I can from this java config: [link](https://github.com/mfussenegger/nvim-jdtls/wiki/Sample-Configurations) - better ui for code actions - formatting - setup junit tests for java - neovim lightbulb config +- list all binaries needed for functionality +- configure neogit +- toggle virtual text diagnostics + +**LOW PRIORITY** + +- spell not activated in readme Markdown - better autoimport - can' find global bianry for markdownlint -- spell not activated in readme Markdown -- list all binaries needed for functionality - keep and eye on indent guides plugin for thin lines - look into autoinstall lsp -- update Vista symbols - get logo -- configure neogit -- toggle virtual text diagnostics - move language servers not installed with npm to neovim local share location - json config file (luajson) diff --git a/lua/nv-galaxyline/init.lua b/lua/nv-galaxyline/init.lua index c5943e6c..fd6ca8c8 100644 --- a/lua/nv-galaxyline/init.lua +++ b/lua/nv-galaxyline/init.lua @@ -52,7 +52,7 @@ gls.left[1] = { vim.api.nvim_command('hi GalaxyViMode guifg=' .. mode_color[vim.fn.mode()]) return 'â–Š ' end, - highlight = {colors.red, colors.bg, 'bold'} + highlight = {colors.red, colors.bg} } } print(vim.fn.getbufvar(0,'ts')) @@ -66,7 +66,7 @@ gls.left[2] = { condition = condition.check_git_workspace, separator = ' ', separator_highlight = {'NONE', colors.bg}, - highlight = {colors.orange, colors.bg, 'bold'} + highlight = {colors.orange, colors.bg} } } @@ -76,7 +76,7 @@ gls.left[3] = { condition = condition.check_git_workspace, separator = ' ', separator_highlight = {'NONE', colors.bg}, - highlight = {colors.grey, colors.bg, 'bold'} + highlight = {colors.grey, colors.bg} } } @@ -145,7 +145,7 @@ gls.right[5] = { return true end, icon = 'ï‚… ', - highlight = {colors.grey, colors.bg, 'bold'} + highlight = {colors.grey, colors.bg} } } @@ -163,16 +163,60 @@ gls.right[7] = { provider = 'LinePercent', separator = ' ', separator_highlight = {'NONE', colors.bg}, - highlight = {colors.grey, colors.bg, 'bold'} + highlight = {colors.grey, colors.bg} + } +} + +gls.right[8] = { + Tabstop = { + provider = function() + return "Spaces: " .. vim.api.nvim_buf_get_option(0, "tabstop") .. " " + end, + condition = condition.hide_in_width, + separator = ' ', + separator_highlight = {'NONE', colors.bg}, + highlight = {colors.grey, colors.bg} + } +} + +gls.right[9] = { + BufferType = { + provider = 'FileTypeName', + condition = condition.hide_in_width, + separator = ' ', + separator_highlight = {'NONE', colors.bg}, + highlight = {colors.grey, colors.bg} + } +} + +gls.right[10] = { + FileEncode = { + provider = 'FileEncode', + condition = condition.hide_in_width, + separator = ' ', + separator_highlight = {'NONE',colors.bg}, + highlight = {colors.grey, colors.bg} + } +} + +gls.right[11] = { + Space = { + provider = function() + return ' ' + end, + separator = ' ', + separator_highlight = {'NONE', colors.bg}, + highlight = {colors.orange, colors.bg} } } + gls.short_line_left[1] = { BufferType = { provider = 'FileTypeName', separator = ' ', separator_highlight = {'NONE', colors.bg}, - highlight = {colors.grey, colors.bg, 'bold'} + highlight = {colors.grey, colors.bg} } } @@ -180,7 +224,7 @@ gls.short_line_left[2] = { SFileName = { provider = 'SFileName', condition = condition.buffer_not_empty, - highlight = {colors.grey, colors.bg, 'bold'} + highlight = {colors.grey, colors.bg} } } |