From ac2225e2bf72e73824db6b444bae27251e0f1bd3 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Wed, 13 Mar 2024 14:15:31 -0500 Subject: [PATCH] new: Added LICENSE and README --- LICENSE | 21 +++++++++++++++++++++ README.md | 6 ++++++ themes/airline.vim | 20 -------------------- 3 files changed, 27 insertions(+), 20 deletions(-) create mode 100644 LICENSE create mode 100644 README.md delete mode 100644 themes/airline.vim diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0990e28 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Sayantan Santra + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..69892ae --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# My NeoVim Config Files + +This is basically a copy of my `$XDG_CONFIG_HOME/nvim`. Feel free to reuse it for configuring your [NeoVim](https://neovim.io/) the way you like it. + +[Link to the base repo.](https://git.sintan1729.uk/SinTan1729/my-nvim-config) + diff --git a/themes/airline.vim b/themes/airline.vim deleted file mode 100644 index 14f9f22..0000000 --- a/themes/airline.vim +++ /dev/null @@ -1,20 +0,0 @@ -" enable tabline -let g:airline#extensions#tabline#enabled = 1 -let g:airline#extensions#tabline#left_sep = '' -let g:airline#extensions#tabline#left_alt_sep = '' -let g:airline#extensions#tabline#right_sep = '' -let g:airline#extensions#tabline#right_alt_sep = '' - -" enable powerline fonts -let g:airline_powerline_fonts = 1 -let g:airline_left_sep = '' -let g:airline_right_sep = '' - -" Switch to your current theme -let g:airline_theme = 'onedark' - -" Always show tabs -set showtabline=2 - -" We don't need to see things like -- INSERT -- anymore -set noshowmode