new: Added LICENSE and README
This commit is contained in:
parent
ea0218a8cb
commit
ac2225e2bf
3 changed files with 27 additions and 20 deletions
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -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.
|
6
README.md
Normal file
6
README.md
Normal file
|
@ -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)
|
||||||
|
|
|
@ -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
|
|
Loading…
Reference in a new issue