better config structure

navigator
siduck76 3 years ago
parent 03e78be718
commit 503dc5b1c8

@ -79,15 +79,13 @@ nvim-base16 doesnt even take time to load unlike base16-vim which was eating hal
nvim
├──init.lua
└──lua
└──foo
└──lua.lua
└──anything.lua
```
- The init.lua is used instead of init.vim.
- The lua folder contains modules ( config files ) , in the example above "foo" folder could be considered as a module and it contains a lua.lua.
- The lua.lua file is supposed to have any nvim config written in lua , its like splitting the overall config into small bits and make it more organized.
- To load or source that "foo" module (like making it load with init.lua ) , you need to load it in init.lua like this : require('foo.lua').
- The lua folder contains modules ( config files ) , in the example above anything.lua file in lua folder could be considered as a module.
- The anything.lua file is supposed to have any neovim config written in lua , its like splitting the overall config into small bits and make it more organized , like one module for highlights and colors , another one for statusline and so on!.
- To load or source that "anything" module (like making it load with init.lua ) ,add this is in init.lua : require "anything".
# Features
@ -110,7 +108,7 @@ nvim-base16 doesnt even take time to load unlike base16-vim which was eating hal
- indent-blankline.Nvim for indentlines
- smooth scrolling
- Snip support from VSCode through vsnip supporting custom and predefined snips (friendly-snippets)
# Guides to migrate your nvim configs to init.lua -
- https://github.com/nanotee/nvim-lua-guide
@ -138,7 +136,7 @@ nvim-base16 doesnt even take time to load unlike base16-vim which was eating hal
git clone https://github.com/wbthomason/packer.nvim\
~/.local/share/nvim/site/pack/packer/start/packer.nvim
```
- copy lua folder and init.lua into ~/.config/nvim
@ -146,7 +144,7 @@ git clone https://github.com/wbthomason/packer.nvim\
- Install language servers and prettier ( for autocompletion etc and code formatting , nodejs should be installed too!) , this usually depends on the language support you want to add in your neovim config.
```
npm config set prefix=~/.node_modules
npm config set prefix=~/.node_modules
npm install -g vscode-html-languageserver-bin typescript typescript-language-server vscode-css-languageserver-bin prettier
(ADD ~/.node_modules at your PATH)

@ -1,17 +1,17 @@
-- load all plugins
require "pluginsList.lua"
require "file-icons.lua"
require "pluginList"
require "file-icons"
require "misc-utils.lua"
require "bufferline.lua"
require "statusline.lua"
require "misc-utils"
require "top-bufferline"
require "statusline"
require("colorizer").setup()
require("neoscroll").setup() -- smooth scroll
-- lsp
require "lspconfig.lua"
require "compe.lua"
require "nvim-lspconfig"
require "compe-completion"
local cmd = vim.cmd
local g = vim.g
@ -42,8 +42,8 @@ g.indent_blankline_buftype_exclude = {"terminal"}
g.indent_blankline_show_trailing_blankline_indent = false
g.indent_blankline_show_first_indent_level = false
require "treesitter.lua"
require "mappings.lua"
require "treesitter-nvim"
require "mappings"
-- highlights --
cmd "hi LineNr guifg=#42464e guibg=NONE"
@ -58,11 +58,11 @@ cmd "hi Pmenu guibg=#282c34"
cmd "hi Normal guibg=NONE ctermbg=NONE"
-- cmd "hi Normal guibg=#1e222a"
require "telescope.lua"
require "nvimTree.lua"
require "telescope-nvim"
require "nvimTree"
-- git signs , lsp symbols etc
require "gitsigns.lua"
require "gitsigns-nvim"
require("nvim-autopairs").setup()
require("lspkind").init()
@ -78,4 +78,4 @@ cmd "hi clear CursorLine"
cmd "hi cursorlinenr guibg=NONE guifg=#abb2bf"
-- setup for TrueZen.nvim
require "zenmode.lua"
require "zenmode"

Loading…
Cancel
Save