diff --git a/lua/lualine.lua b/lua/lualine.lua index f61d4ba..3d8b344 100644 --- a/lua/lualine.lua +++ b/lua/lualine.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local utils = require('lualine.utils') local highlight = require('lualine.highlight') diff --git a/lua/lualine/components/branch.lua b/lua/lualine/components/branch.lua index b589dbe..6c01ec7 100644 --- a/lua/lualine/components/branch.lua +++ b/lua/lualine/components/branch.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local git_branch -- os specific path separator diff --git a/lua/lualine/components/encoding.lua b/lua/lualine/components/encoding.lua index bbc840d..45745ca 100644 --- a/lua/lualine/components/encoding.lua +++ b/lua/lualine/components/encoding.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function encoding() local data = [[%{strlen(&fenc)?&fenc:&enc}]] return data diff --git a/lua/lualine/components/fileformat.lua b/lua/lualine/components/fileformat.lua index 0bbbdab..92a9073 100644 --- a/lua/lualine/components/fileformat.lua +++ b/lua/lualine/components/fileformat.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function fileformat() local data = [[%{&ff}]] return data diff --git a/lua/lualine/components/filename.lua b/lua/lualine/components/filename.lua index a5bdc7f..f748daf 100644 --- a/lua/lualine/components/filename.lua +++ b/lua/lualine/components/filename.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function filename() local data = [[%t %m]] return data diff --git a/lua/lualine/components/filetype.lua b/lua/lualine/components/filetype.lua index 097fe9b..f212479 100644 --- a/lua/lualine/components/filetype.lua +++ b/lua/lualine/components/filetype.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function filetype() local data = vim.bo.filetype if #data > 0 then diff --git a/lua/lualine/components/location.lua b/lua/lualine/components/location.lua index 7c51388..9b65af1 100644 --- a/lua/lualine/components/location.lua +++ b/lua/lualine/components/location.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function location() local data = [[%3l:%-2c]] return data diff --git a/lua/lualine/components/mode.lua b/lua/lualine/components/mode.lua index a177201..c3218b6 100644 --- a/lua/lualine/components/mode.lua +++ b/lua/lualine/components/mode.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function mode() local mode_map = { ['n'] = 'NORMAL', diff --git a/lua/lualine/components/progress.lua b/lua/lualine/components/progress.lua index 7a1a24c..c10d781 100644 --- a/lua/lualine/components/progress.lua +++ b/lua/lualine/components/progress.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function progress() local data = [[%3P]] return data diff --git a/lua/lualine/components/signify.lua b/lua/lualine/components/signify.lua index d0b79b8..a1d4c8b 100644 --- a/lua/lualine/components/signify.lua +++ b/lua/lualine/components/signify.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function signify() if vim.fn.exists('*sy#repo#get_stats') == 0 then return '' end local added, modified, removed = unpack(vim.fn['sy#repo#get_stats']()) diff --git a/lua/lualine/extensions/fzf.lua b/lua/lualine/extensions/fzf.lua index 5120706..d1ebbda 100644 --- a/lua/lualine/extensions/fzf.lua +++ b/lua/lualine/extensions/fzf.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local function fzf_statusline() vim.cmd([[hi clear fzf1]]) vim.cmd([[hi link fzf1 lualine_a_normal]]) diff --git a/lua/lualine/highlight.lua b/lua/lualine/highlight.lua index 42b7813..0c40c73 100644 --- a/lua/lualine/highlight.lua +++ b/lua/lualine/highlight.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local M = { } local utils = require "lualine.utils" diff --git a/lua/lualine/themes/16color.lua b/lua/lualine/themes/16color.lua index 40c2fe7..4abcef6 100644 --- a/lua/lualine/themes/16color.lua +++ b/lua/lualine/themes/16color.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/16color.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit itchyny, jackno (lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/ayu_dark.lua b/lua/lualine/themes/ayu_dark.lua index e3f643b..1716122 100644 --- a/lua/lualine/themes/ayu_dark.lua +++ b/lua/lualine/themes/ayu_dark.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color2 = "#0f1419", @@ -40,4 +39,4 @@ local ayu_dark = { }, } -return ayu_dark \ No newline at end of file +return ayu_dark diff --git a/lua/lualine/themes/ayu_light.lua b/lua/lualine/themes/ayu_light.lua index 8e5324c..a3deac3 100644 --- a/lua/lualine/themes/ayu_light.lua +++ b/lua/lualine/themes/ayu_light.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color2 = "#f3f3f3", diff --git a/lua/lualine/themes/ayu_mirage.lua b/lua/lualine/themes/ayu_mirage.lua index c937f4a..4c03e4f 100644 --- a/lua/lualine/themes/ayu_mirage.lua +++ b/lua/lualine/themes/ayu_mirage.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color2 = "#242b38", diff --git a/lua/lualine/themes/codedark.lua b/lua/lualine/themes/codedark.lua index 10cb5e1..df2243a 100644 --- a/lua/lualine/themes/codedark.lua +++ b/lua/lualine/themes/codedark.lua @@ -1,3 +1,7 @@ +-- Copyright (c) 2020-2021 Shatur95 +-- MIT license, see LICENSE for more details. + + local codedark = {} local colors = { diff --git a/lua/lualine/themes/dracula.lua b/lua/lualine/themes/dracula.lua index 5545f1d..1268b06 100644 --- a/lua/lualine/themes/dracula.lua +++ b/lua/lualine/themes/dracula.lua @@ -1,3 +1,7 @@ +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. +-- Credit itchyny, jackno (lightline) + local dracula = {} local colors = { diff --git a/lua/lualine/themes/forest_night.lua b/lua/lualine/themes/forest_night.lua index c4ff70b..21e99c0 100644 --- a/lua/lualine/themes/forest_night.lua +++ b/lua/lualine/themes/forest_night.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 gnuyent +-- MIT license, see LICENSE for more details. + local forest_night = {} local colors = { diff --git a/lua/lualine/themes/gruvbox.lua b/lua/lualine/themes/gruvbox.lua index 2cfb452..d776bf2 100644 --- a/lua/lualine/themes/gruvbox.lua +++ b/lua/lualine/themes/gruvbox.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local gruvbox = {} local colors = { diff --git a/lua/lualine/themes/gruvbox_material.lua b/lua/lualine/themes/gruvbox_material.lua index 206c1dd..885d2f8 100644 --- a/lua/lualine/themes/gruvbox_material.lua +++ b/lua/lualine/themes/gruvbox_material.lua @@ -1,8 +1,5 @@ --- ============================================================================= --- Filename: lua/lualine/themes/gruvbox_material.lua --- Author: shadman --- License: MIT License --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. local colors = { fg1 = "#282828", diff --git a/lua/lualine/themes/iceberg_dark.lua b/lua/lualine/themes/iceberg_dark.lua index 9eb1c22..aa61dbf 100644 --- a/lua/lualine/themes/iceberg_dark.lua +++ b/lua/lualine/themes/iceberg_dark.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color2 = "#161821", @@ -42,4 +41,4 @@ local iceberg = { }, } -return iceberg \ No newline at end of file +return iceberg diff --git a/lua/lualine/themes/iceberg_light.lua b/lua/lualine/themes/iceberg_light.lua index 6fff2d9..6596119 100644 --- a/lua/lualine/themes/iceberg_light.lua +++ b/lua/lualine/themes/iceberg_light.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color5 = "#668e3d", @@ -40,4 +39,4 @@ local iceberg = { }, } -return iceberg \ No newline at end of file +return iceberg diff --git a/lua/lualine/themes/jellybeans.lua b/lua/lualine/themes/jellybeans.lua index 572705a..83870ba 100644 --- a/lua/lualine/themes/jellybeans.lua +++ b/lua/lualine/themes/jellybeans.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color2 = "#30302c", @@ -41,4 +40,4 @@ local jellybeans = { }, } -return jellybeans \ No newline at end of file +return jellybeans diff --git a/lua/lualine/themes/material.lua b/lua/lualine/themes/material.lua index cae2f0f..581626a 100644 --- a/lua/lualine/themes/material.lua +++ b/lua/lualine/themes/material.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lightline/themes/material.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: Lokesh Krishna(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/molokai.lua b/lua/lualine/themes/molokai.lua index bbfec09..bbcd2fd 100644 --- a/lua/lualine/themes/molokai.lua +++ b/lua/lualine/themes/molokai.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/molokai.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: challsted(lightline) --- License: MIT License --- ============================================================================= local molokai = {} diff --git a/lua/lualine/themes/nightfly.lua b/lua/lualine/themes/nightfly.lua index eda6f98..14e3ef4 100644 --- a/lua/lualine/themes/nightfly.lua +++ b/lua/lualine/themes/nightfly.lua @@ -1,8 +1,5 @@ --- ============================================================================= --- lightline to lualine theme converter --- Author: shadman --- License: MIT License --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. local colors = { color3 = "#2c3043", diff --git a/lua/lualine/themes/nord.lua b/lua/lualine/themes/nord.lua index 334257f..3a9e0af 100644 --- a/lua/lualine/themes/nord.lua +++ b/lua/lualine/themes/nord.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. + local nord = {} local colors = { diff --git a/lua/lualine/themes/oceanicnext.lua b/lua/lualine/themes/oceanicnext.lua index b5dfa70..524e5ad 100644 --- a/lua/lualine/themes/oceanicnext.lua +++ b/lua/lualine/themes/oceanicnext.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color0 = "#ffffff", @@ -43,4 +42,4 @@ local oceanicnext = { }, } -return oceanicnext \ No newline at end of file +return oceanicnext diff --git a/lua/lualine/themes/onedark.lua b/lua/lualine/themes/onedark.lua index 1a67675..bb10730 100644 --- a/lua/lualine/themes/onedark.lua +++ b/lua/lualine/themes/onedark.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/onedark.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: Zoltan Dalmadi(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/onehalf.lua b/lua/lualine/themes/onehalf.lua index cc801ff..2466911 100644 --- a/lua/lualine/themes/onehalf.lua +++ b/lua/lualine/themes/onehalf.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color0 = "#282c34", @@ -43,4 +42,4 @@ local onehalfdark = { }, } -return onehalfdark \ No newline at end of file +return onehalfdark diff --git a/lua/lualine/themes/onelight.lua b/lua/lualine/themes/onelight.lua index d345a6d..d2a837c 100644 --- a/lua/lualine/themes/onelight.lua +++ b/lua/lualine/themes/onelight.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/onelight.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: Zoltan Dalmadi(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/papercolor.lua b/lua/lualine/themes/papercolor.lua index 802ebfa..aa91433 100644 --- a/lua/lualine/themes/papercolor.lua +++ b/lua/lualine/themes/papercolor.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/papercolor.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: itchyny(lightline) --- License: MIT License --- ============================================================================= local background = vim.o.background diff --git a/lua/lualine/themes/papercolor_dark.lua b/lua/lualine/themes/papercolor_dark.lua index b0d252d..c323cad 100644 --- a/lua/lualine/themes/papercolor_dark.lua +++ b/lua/lualine/themes/papercolor_dark.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lightline/themes/PaperColor_dark.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: TKNGUE(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/papercolor_light.lua b/lua/lualine/themes/papercolor_light.lua index 57e2fa6..6000564 100644 --- a/lua/lualine/themes/papercolor_light.lua +++ b/lua/lualine/themes/papercolor_light.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/PaperColor_light.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: TKNGUE(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/powerline.lua b/lua/lualine/themes/powerline.lua index 5fbb558..7e4e34f 100644 --- a/lua/lualine/themes/powerline.lua +++ b/lua/lualine/themes/powerline.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. + local powerline = { } local Colors = { diff --git a/lua/lualine/themes/seoul256.lua b/lua/lualine/themes/seoul256.lua index 1ac659d..4a6af35 100644 --- a/lua/lualine/themes/seoul256.lua +++ b/lua/lualine/themes/seoul256.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color5 = "#d7afaf", @@ -41,4 +40,4 @@ local seoul256 = { }, } -return seoul256 \ No newline at end of file +return seoul256 diff --git a/lua/lualine/themes/solarized.lua b/lua/lualine/themes/solarized.lua index 468675d..3e05426 100644 --- a/lua/lualine/themes/solarized.lua +++ b/lua/lualine/themes/solarized.lua @@ -1,9 +1,7 @@ --- ============================================================================= --- Filename: lua/lualine/themes/solarized.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: itchyny(lightline) -- License: MIT License --- ============================================================================= local background = vim.o.background diff --git a/lua/lualine/themes/solarized_dark.lua b/lua/lualine/themes/solarized_dark.lua index 0067daa..01b43cc 100644 --- a/lua/lualine/themes/solarized_dark.lua +++ b/lua/lualine/themes/solarized_dark.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/solarized_dark.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: itchyny(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/solarized_light.lua b/lua/lualine/themes/solarized_light.lua index d49d727..5993688 100644 --- a/lua/lualine/themes/solarized_light.lua +++ b/lua/lualine/themes/solarized_light.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/solarized_light.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: itchyny(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/themes/tomorrow.lua b/lua/lualine/themes/tomorrow.lua index 4ad273d..2e2b567 100644 --- a/lua/lualine/themes/tomorrow.lua +++ b/lua/lualine/themes/tomorrow.lua @@ -1,8 +1,7 @@ --- ============================================================================= +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Genarated by lightline to lualine theme converter --- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 --- License: MIT License --- ============================================================================= +-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9 local colors = { color14 = "#718c00", diff --git a/lua/lualine/themes/wombat.lua b/lua/lualine/themes/wombat.lua index 44a684f..01a6960 100644 --- a/lua/lualine/themes/wombat.lua +++ b/lua/lualine/themes/wombat.lua @@ -1,9 +1,6 @@ --- ============================================================================= --- Filename: lua/lualine/themes/wombat.lua --- Author: shadman +-- Copyright (c) 2020-2021 shadmansaleh +-- MIT license, see LICENSE for more details. -- Credit: itchyny(lightline) --- License: MIT License --- ============================================================================= local M = {} diff --git a/lua/lualine/utils.lua b/lua/lualine/utils.lua index f2e45ca..8bedb5e 100644 --- a/lua/lualine/utils.lua +++ b/lua/lualine/utils.lua @@ -1,3 +1,6 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + local M = { } function M.draw_section(section, separator)