================================================================================

nord is a colorscheme for NeoVim written in Lua with built in support
for native LSP, TreeSitter and many more plugins.

================================================================================
CONTENTS

    1. Features ................. |nord-features|
    2. Usage .................... |nord-usage|
    3. Styles ................... |nord-styles|
    4. Configuration ............ |nord-configuration|
    5. Functions ................ |nord-functions|
    6. Mappings ................. |nord-mappings|

================================================================================
1. Features                                             *nord-features*

    + A wide array of supported plugins -TreeSitter
                                        -LSP Diagnostics
                                        -LSP Saga
                                        -LSP Trouble
                                        -Nvim-Compe
                                        -Git Gutter
                                        -Git Messenger
                                        -Git Signs
                                        -Telescope.nvim
                                        -Nvim-Tree.lua
                                        -NERDTree
                                        -Indent-Blankline.nvim
                                        -Vim-Which-Key
                                        -WhichKey.nvim
                                        -Dashboard
                                        -BufferLine
                                        -Lualine
                                        -Neogit
                                        -Vim-Sneak
                                        -Nvim-Dap
                                        -Vim-Illuminate
                                        -lightspeed.nvim
                                        -mini.nvim

    + Ability to have a different background on sidebar windows like Nvim-Tree,
      Terminal, Packer, Whichkey, QuickFix etc.

    + Asynchronous highlight loading which makes the theme extremely fast

    + Added functions for live style switching, without the need to reload
      NeoVim

================================================================================
2. Usage                                                   *nord-usage*

    To use the default settings, just apply the theme

    If you are using Vim-Script:
        colorscheme nord~

    If you are using Lua:
        require('nord').set~


    nord also includes a Lualine theme. Set it in your Lualine config
        require('lualine').setup {~
          options = {~
            -- ... your lualine config
            theme = 'nord'~
            -- ... your lualine config
          }~
        }~
    Just make sure to set the theme to "nord", as "nord" already
    exist built in to lualine
    
    If the lualine's background has become transparent, make sure that
    lualine setup is being called after the nord theme has been applied.

vim:tw=78:ts=4:ft=help:norl:
