better config structure
This commit is contained in:
parent
03e78be718
commit
503dc5b1c8
16
README.md
16
README.md
|
@ -79,15 +79,13 @@ nvim-base16 doesnt even take time to load unlike base16-vim which was eating hal
|
||||||
nvim
|
nvim
|
||||||
├──init.lua
|
├──init.lua
|
||||||
└──lua
|
└──lua
|
||||||
└──foo
|
└──anything.lua
|
||||||
└──lua.lua
|
|
||||||
```
|
```
|
||||||
|
|
||||||
- The init.lua is used instead of init.vim.
|
- The init.lua is used instead of init.vim.
|
||||||
|
- The lua folder contains modules ( config files ) , in the example above anything.lua file in lua folder could be considered as a module.
|
||||||
- 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 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!.
|
||||||
- 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 "anything" module (like making it load with init.lua ) ,add this is in init.lua : require "anything".
|
||||||
- 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').
|
|
||||||
|
|
||||||
# Features
|
# 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
|
- indent-blankline.Nvim for indentlines
|
||||||
- smooth scrolling
|
- smooth scrolling
|
||||||
- Snip support from VSCode through vsnip supporting custom and predefined snips (friendly-snippets)
|
- Snip support from VSCode through vsnip supporting custom and predefined snips (friendly-snippets)
|
||||||
|
|
||||||
# Guides to migrate your nvim configs to init.lua -
|
# Guides to migrate your nvim configs to init.lua -
|
||||||
|
|
||||||
- https://github.com/nanotee/nvim-lua-guide
|
- 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\
|
git clone https://github.com/wbthomason/packer.nvim\
|
||||||
~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
- copy lua folder and init.lua into ~/.config/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.
|
- 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
|
npm install -g vscode-html-languageserver-bin typescript typescript-language-server vscode-css-languageserver-bin prettier
|
||||||
|
|
||||||
(ADD ~/.node_modules at your PATH)
|
(ADD ~/.node_modules at your PATH)
|
||||||
|
|
26
init.lua
26
init.lua
|
@ -1,17 +1,17 @@
|
||||||
-- load all plugins
|
-- load all plugins
|
||||||
require "pluginsList.lua"
|
require "pluginList"
|
||||||
require "file-icons.lua"
|
require "file-icons"
|
||||||
|
|
||||||
require "misc-utils.lua"
|
require "misc-utils"
|
||||||
require "bufferline.lua"
|
require "top-bufferline"
|
||||||
require "statusline.lua"
|
require "statusline"
|
||||||
|
|
||||||
require("colorizer").setup()
|
require("colorizer").setup()
|
||||||
require("neoscroll").setup() -- smooth scroll
|
require("neoscroll").setup() -- smooth scroll
|
||||||
|
|
||||||
-- lsp
|
-- lsp
|
||||||
require "lspconfig.lua"
|
require "nvim-lspconfig"
|
||||||
require "compe.lua"
|
require "compe-completion"
|
||||||
|
|
||||||
local cmd = vim.cmd
|
local cmd = vim.cmd
|
||||||
local g = vim.g
|
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_trailing_blankline_indent = false
|
||||||
g.indent_blankline_show_first_indent_level = false
|
g.indent_blankline_show_first_indent_level = false
|
||||||
|
|
||||||
require "treesitter.lua"
|
require "treesitter-nvim"
|
||||||
require "mappings.lua"
|
require "mappings"
|
||||||
|
|
||||||
-- highlights --
|
-- highlights --
|
||||||
cmd "hi LineNr guifg=#42464e guibg=NONE"
|
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=NONE ctermbg=NONE"
|
||||||
-- cmd "hi Normal guibg=#1e222a"
|
-- cmd "hi Normal guibg=#1e222a"
|
||||||
|
|
||||||
require "telescope.lua"
|
require "telescope-nvim"
|
||||||
require "nvimTree.lua"
|
require "nvimTree"
|
||||||
|
|
||||||
-- git signs , lsp symbols etc
|
-- git signs , lsp symbols etc
|
||||||
require "gitsigns.lua"
|
require "gitsigns-nvim"
|
||||||
require("nvim-autopairs").setup()
|
require("nvim-autopairs").setup()
|
||||||
require("lspkind").init()
|
require("lspkind").init()
|
||||||
|
|
||||||
|
@ -78,4 +78,4 @@ cmd "hi clear CursorLine"
|
||||||
cmd "hi cursorlinenr guibg=NONE guifg=#abb2bf"
|
cmd "hi cursorlinenr guibg=NONE guifg=#abb2bf"
|
||||||
|
|
||||||
-- setup for TrueZen.nvim
|
-- setup for TrueZen.nvim
|
||||||
require "zenmode.lua"
|
require "zenmode"
|
||||||
|
|
Loading…
Reference in New Issue