41 lines
1,023 B
Lua
41 lines
1,023 B
Lua
vim.g.python3_host_prog = '~/.pyenv/versions/neovim3/bin/python'
|
|
|
|
require 'plugins'
|
|
require 'keymaps'
|
|
require 'config_lsp'
|
|
|
|
vim.notify = require("notify")
|
|
vim.cmd("colorscheme nightfox") -- TODO
|
|
|
|
vim.cmd("let &t_ut=''") -- For kitty background colour support
|
|
vim.opt.updatetime=500
|
|
vim.opt.mouse="nv"
|
|
vim.opt.termguicolors=true
|
|
|
|
vim.opt.number=true
|
|
vim.opt.relativenumber=true
|
|
vim.opt.listchars = { trail = '.', tab = '>_' }
|
|
vim.opt.list=true
|
|
vim.opt.wrap=true
|
|
vim.opt.linebreak=true
|
|
vim.opt.autoread=true
|
|
|
|
vim.opt.expandtab=true
|
|
vim.opt.autoindent=true
|
|
vim.opt.smartindent=true
|
|
|
|
vim.opt.splitbelow=true
|
|
vim.opt.splitright=true
|
|
|
|
-- TODO convert to lua
|
|
vim.cmd[[
|
|
au BufRead,BufNewFile *.ipynb setlocal filetype=json
|
|
au BufRead,BufNewFile *.md setlocal spell
|
|
au BufRead,BufNewFile *.code-workspace setlocal filetype=json
|
|
au BufRead,BufNewFile *.csv setlocal nowrap
|
|
au BufRead,BufNewFile *.service[a-zA-Z0-9]* setlocal filetype=systemd
|
|
au TermOpen * setlocal nonumber norelativenumber
|
|
syntax on
|
|
filetype plugin indent on
|
|
]]
|