dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

init.lua (527B)


      1 -- Core configuration options.
      2 require('config.options')
      3 
      4 -- General key mappings.
      5 require('config.keymaps')
      6 
      7 -- Machine-local keymaps (if they exist).
      8 local local_keymaps_path = vim.fn.expand('~/.local/config/nvim/lua/config/keymaps.lua')
      9 if vim.fn.filereadable(local_keymaps_path) == 1 then
     10   dofile(local_keymaps_path)
     11 end
     12 
     13 -- Colorschemes.
     14 require('config.colorscheme')
     15 
     16 -- Reusable code snippets.
     17 require('config.snippets')
     18 
     19 -- Project-specific code.
     20 require('config.projects')
     21 
     22 -- Package manager.
     23 require('config.lazy')